ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4PSPassageTrackLength.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4PSPassageTrackLength.cc
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 //
28 // G4PSPassageTrackLength
30 #include "G4StepStatus.hh"
31 #include "G4Track.hh"
32 #include "G4UnitsTable.hh"
33 
35 // (Description)
36 // This is a primitive scorer class for scoring only track length.
37 // The tracks which passed a geometry is taken into account.
38 //
39 //
40 // Created: 2005-11-14 Tsukasa ASO, Akinori Kimura.
41 // 2010-07-22 Introduce Unit specification.
42 //
44 
46  :G4VPrimitiveScorer(name,depth),HCID(-1),fCurrentTrkID(-1),fTrackLength(0.),
47  EvtMap(0),weighted(false)
48 {
49  SetUnit("mm");
50 }
51 
53  const G4String& unit,
54  G4int depth)
55  :G4VPrimitiveScorer(name,depth),HCID(-1),fCurrentTrkID(-1),fTrackLength(0.),
56  EvtMap(0),weighted(false)
57 {
58  SetUnit(unit);
59 }
60 
61 
63 {;}
64 
66 {
67 
68  if ( IsPassed(aStep) ) {
69  G4int index = GetIndex(aStep);
70  EvtMap->add(index,fTrackLength);
71  }
72 
73  return TRUE;
74 }
75 
77  G4bool Passed = FALSE;
78 
79  G4bool IsEnter = aStep->GetPreStepPoint()->GetStepStatus() == fGeomBoundary;
80  G4bool IsExit = aStep->GetPostStepPoint()->GetStepStatus() == fGeomBoundary;
81 
82  G4int trkid = aStep->GetTrack()->GetTrackID();
83  G4double trklength = aStep->GetStepLength();
84  if(weighted) trklength *= aStep->GetPreStepPoint()->GetWeight();
85 
86  if ( IsEnter &&IsExit ){ // Passed at one step
87  fTrackLength = trklength; // Track length is absolutely given.
88  Passed = TRUE;
89  }else if ( IsEnter ){ // Enter a new geometry
90  fCurrentTrkID = trkid; // Resetting the current track.
91  fTrackLength = trklength;
92  }else if ( IsExit ){ // Exit a current geometry
93  if ( fCurrentTrkID == trkid ) {
94  fTrackLength += trklength; // Adding the track length to current one,
95  Passed = TRUE; // if the track is same as entered.
96  }
97  }else{ // Inside geometry
98  if ( fCurrentTrkID == trkid ){ // Adding the track length to current one ,
99  fTrackLength += trklength; // if the track is same as entered.
100  }
101  }
102 
103  return Passed;
104 }
105 
107 {
108  fCurrentTrkID = -1;
109 
111  if ( HCID < 0 ) HCID = GetCollectionID(0);
113 }
114 
116 {;}
117 
119  EvtMap->clear();
120 }
121 
123 {;}
124 
126 {
127  G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
128  G4cout << " PrimitiveSenstivity " << GetName() << G4endl;
129  G4cout << " Number of entries " << EvtMap->entries() << G4endl;
130  std::map<G4int,G4double*>::iterator itr = EvtMap->GetMap()->begin();
131  for(; itr != EvtMap->GetMap()->end(); itr++) {
132  G4cout << " copy no.: " << itr->first
133  << " track length : "
134  << *(itr->second)/GetUnitValue()
135  << " [" << GetUnit()<< "]"
136  << G4endl;
137  }
138 }
139 
141 {
142  CheckAndSetUnit(unit,"Length");
143 }