source: trunk/source/digits_hits/scorer/src/G4PSTrackCounter.cc@ 1354

Last change on this file since 1354 was 1340, checked in by garnier, 15 years ago

update ti head

File size: 4.6 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// $Id: G4PSTrackCounter.cc,v 1.3 2010/07/23 04:35:38 taso Exp $
28// GEANT4 tag $Name: $
29//
30// G4PSTrackCounter
31#include "G4PSTrackCounter.hh"
32#include "G4UnitsTable.hh"
33
34///////////////////////////////////////////////////////////////////////////////
35// (Description)
36// This is a primitive scorer class for scoring number of tracks in a cell.
37//
38// Created: 2007-02-02 Tsukasa ASO, Akinori Kimura.
39// 2010-07-22 Introduce Unit specification.
40//
41///////////////////////////////////////////////////////////////////////////////
42
43G4PSTrackCounter::G4PSTrackCounter(G4String name, G4int direction, G4int depth)
44 :G4VPrimitiveScorer(name,depth),HCID(-1),fDirection(direction),weighted(false)
45{
46 SetUnit("");
47}
48
49G4PSTrackCounter::~G4PSTrackCounter()
50{;}
51
52G4bool G4PSTrackCounter::ProcessHits(G4Step* aStep,G4TouchableHistory*)
53{
54
55 G4StepPoint* preStep = aStep->GetPreStepPoint();
56 G4StepPoint* posStep = aStep->GetPostStepPoint();
57 G4bool IsEnter = preStep->GetStepStatus()==fGeomBoundary;
58 G4bool IsExit = posStep->GetStepStatus()==fGeomBoundary;
59
60 // Regular : count in prestep volume.
61 G4int index = GetIndex(aStep);
62
63 // G4cout << " trk " << aStep->GetTrack()->GetTrackID()
64 // << " index " << index << " In " << IsEnter << " Out " <<IsExit
65 // << " PreStatus " << preStep->GetStepStatus()
66 // << " PostStatus " << posStep->GetStepStatus()
67 // << " w " << aStep->GetPreStepPoint()->GetWeight()
68 // << G4endl;
69
70 G4bool flag = FALSE;
71
72 if ( IsEnter && fDirection == fCurrent_In ) flag = TRUE;
73 else if ( IsExit && fDirection == fCurrent_Out ) flag = TRUE;
74 else if ( (IsExit||IsEnter) && fDirection == fCurrent_InOut ) flag = TRUE;
75
76 if ( flag ){
77 //G4cout << " Count " << G4endl;
78 G4double val = 1.0;
79 if(weighted) val *= aStep->GetPreStepPoint()->GetWeight();
80 EvtMap->add(index,val);
81 }
82
83 return TRUE;
84}
85
86void G4PSTrackCounter::Initialize(G4HCofThisEvent* HCE)
87{
88 EvtMap = new G4THitsMap<G4double>(detector->GetName(),GetName());
89 if(HCID < 0) {HCID = GetCollectionID(0);}
90 HCE->AddHitsCollection(HCID, (G4VHitsCollection*)EvtMap);
91 //G4cout << "----- PS Initialize " << G4endl;
92}
93
94void G4PSTrackCounter::EndOfEvent(G4HCofThisEvent*)
95{;}
96
97void G4PSTrackCounter::clear(){
98 EvtMap->clear();
99}
100
101void G4PSTrackCounter::DrawAll()
102{;}
103
104void G4PSTrackCounter::PrintAll()
105{
106 G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
107 G4cout << " PrimitiveScorer " << GetName() << G4endl;
108 G4cout << " Number of entries " << EvtMap->entries() << G4endl;
109 std::map<G4int,G4double*>::iterator itr = EvtMap->GetMap()->begin();
110 for(; itr != EvtMap->GetMap()->end(); itr++) {
111 G4cout << " copy no.: " << itr->first
112 << " track count: " << *(itr->second)
113 << " [tracks] "
114 << G4endl;
115 }
116}
117
118void G4PSTrackCounter::SetUnit(const G4String& unit)
119{
120 if (unit == "" ){
121 unitName = unit;
122 unitValue = 1.0;
123 }else{
124 G4String msg = "Invalid unit ["+unit+"] (Current unit is [" +GetUnit()+"] )";
125 G4Exception(GetName(),"DetScorer0000",JustWarning,msg);
126 }
127
128}
129
Note: See TracBrowser for help on using the repository browser.