CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MaterialBudgetAction.cc
Go to the documentation of this file.
1 
4 
7 
12 
13 #include "G4Step.hh"
14 #include "G4Track.hh"
15 #include "G4UImanager.hh"
16 #include "G4UIterminal.hh"
17 #include "G4UItcsh.hh"
18 #include "G4LogicalVolumeStore.hh"
19 #include "G4TouchableHistory.hh"
20 #include "G4VPhysicalVolume.hh"
21 #include "G4VProcess.hh"
22 #include "G4ParticleTable.hh"
23 #include "G4ParticleDefinition.hh"
24 #include "G4ProcessManager.hh"
25 #include "G4TransportationManager.hh"
26 
27 #include <iostream>
28 
29 
30 //-------------------------------------------------------------------------
32  theHistoMgr(0)
33 {
35 
36  edm::ParameterSet m_Anal = iPSet.getParameter<edm::ParameterSet>("MaterialBudgetAction");
37 
38  //---- Accumulate material budget only inside selected volumes
39  std::string theHistoList = m_Anal.getParameter<std::string>("HistogramList");
40  std::vector<std::string> volList = m_Anal.getParameter< std::vector<std::string> >("SelectedVolumes");
41  std::vector<std::string>::const_iterator ite;
42  std::cout << "TestGeometry: List of the selected volumes: " << std::endl;
43  for( ite = volList.begin(); ite != volList.end(); ite++ ){
44  if( (*ite) != "None" ) {
45  theVolumeList.push_back( *ite );
46  std::cout << (*ite) << std::endl;
47  }
48  }
49  // log
50  if(theHistoList == "Tracker" ) {
51  std::cout << "TestGeometry: MaterialBudgetAction running in Tracker Mode" << std::endl;
52  }
53  else if(theHistoList == "ECAL" ) {
54  std::cout << "TestGeometry: MaterialBudgetAction running in Ecal Mode" << std::endl;
55  }
56  else {
57  std::cout << "TestGeometry: MaterialBudgetAction running in General Mode" << std::endl;
58  }
59  //
60 
61  //---- Stop track when a process occurs
62  theProcessToStop = m_Anal.getParameter<std::string>("StopAfterProcess");
63  std::cout << "TestGeometry: stop at process " << theProcessToStop << std::endl;
64 
65  //---- Save histos to ROOT file
66  std::string saveToHistosFile = m_Anal.getParameter<std::string>("HistosFile");
67  if( saveToHistosFile != "None" ) {
68  saveToHistos = true;
69  std::cout << "TestGeometry: saving histograms to " << saveToHistosFile << std::endl;
70  theHistoMgr = new TestHistoMgr();
71 
72  // rr
73  if(theHistoList == "Tracker" ) {
74  theHistos = new MaterialBudgetTrackerHistos( theData, theHistoMgr, saveToHistosFile );
75  }
76  else if (theHistoList == "ECAL") {
77  theHistos = new MaterialBudgetEcalHistos( theData, theHistoMgr, saveToHistosFile );
78  }
79  else {
80  theHistos = new MaterialBudgetHistos( theData, theHistoMgr, saveToHistosFile );
81  }
82  // rr
83  } else {
84  saveToHistos = false;
85  }
86 
87  //---- Save material budget info to TEXT file
88  std::string saveToTxtFile = m_Anal.getParameter<std::string>("TextFile");
89  if( saveToTxtFile != "None" ) {
90  saveToTxt = true;
91  std::cout << "TestGeometry: saving text info to " << saveToTxtFile << std::endl;
92  theTxt = new MaterialBudgetTxt( theData, saveToTxtFile );
93  } else {
94  saveToTxt = false;
95  }
96 
97  //---- Compute all the steps even if not stored on file
98  bool allSteps = m_Anal.getParameter<bool>("AllStepsToTree");
99  std::cout << "TestGeometry: all steps are computed " << allSteps << std::endl;
100  if( allSteps ) theData->SetAllStepsToTree();
101 
102  //---- Save tree to ROOT file
103  std::string saveToTreeFile = m_Anal.getParameter<std::string>("TreeFile");
104  // std::string saveToTreeFile = "";
105  if( saveToTreeFile != "None" ) {
106  saveToTree = true;
107  theTree = new MaterialBudgetTree( theData, saveToTreeFile );
108  } else {
109  saveToTree = false;
110  }
111  std::cout << "TestGeometry: saving ROOT TREE to " << saveToTreeFile << std::endl;
112 
113  //---- Track the first decay products of the main particle
114  // if their kinetic energy is greater than Ekin
115  storeDecay = m_Anal.getUntrackedParameter<bool>("storeDecay",false);
116  Ekin = m_Anal.getUntrackedParameter<double>("EminDecayProd",1000.0); // MeV
117  std::cout << "TestGeometry: decay products steps are stored " << storeDecay;
118  if(storeDecay) std::cout << " if their kinetic energy is greater than " << Ekin << " MeV";
119  std::cout << std::endl;
120  firstParticle = false;
121  }
122 
123 
124 //-------------------------------------------------------------------------
126 {
127  if (saveToTxt) delete theTxt;
128  if (saveToTree) delete theTree;
129  if (saveToHistos) delete theHistos;
130  if (theHistoMgr) delete theHistoMgr;
131  delete theData;
132 }
133 
134 
135 //-------------------------------------------------------------------------
137 {
138 }
139 
140 
141 //-------------------------------------------------------------------------
143 {
144  //----- Check that selected volumes are indeed part of the geometry
145  const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
146  std::vector<G4LogicalVolume*>::const_iterator lvcite;
147  std::vector<G4String>::const_iterator volcite;
148 
149  for( volcite = theVolumeList.begin(); volcite != theVolumeList.end(); volcite++ ){
150  //- std::cout << " MaterialBudgetAction checking volume " << *volcite << std::endl;
151  bool volFound = false;
152  for( lvcite = lvs->begin(); lvcite != lvs->end(); lvcite++ ) {
153  if( (*lvcite)->GetName() == *volcite ) {
154  volFound = true;
155  break;
156  }
157  }
158  if( !volFound ) {
159  std::cerr << " @@@@@@@ WARNING at MaterialBudgetAction: selected volume not found in geometry " << *volcite << std::endl;
160  }
161  }
162 
163 
164  //----- Check process selected is one of the available ones
165  bool procFound = false;
166  if( theProcessToStop == "None" ) {
167  procFound = true;
168  } else {
169  G4ParticleTable * partTable = G4ParticleTable::GetParticleTable();
170  int siz = partTable->size();
171  for (int ii= 0; ii < siz; ii++) {
172  G4ParticleDefinition * particle = partTable->GetParticle(ii);
173  std::string particleName = particle->GetParticleName();
174 
175  //--- All processes of this particle
176  G4ProcessManager * pmanager = particle->GetProcessManager();
177  G4ProcessVector * pvect = pmanager->GetProcessList();
178  int sizproc = pvect->size();
179  for (int jj = 0; jj < sizproc; jj++) {
180  if( (*pvect)[jj]->GetProcessName() == theProcessToStop ) {
181  procFound = true;
182  break;
183  }
184  }
185  }
186  }
187 
188  if( !procFound ) {
189  std::cerr << " @@@@@@@ WARNING at MaterialBudgetAction: selected process to stop tracking not found " << theProcessToStop << std::endl;
190  }
191 
192 }
193 
194 
195 //-------------------------------------------------------------------------
197 {
198  const G4Track * aTrack = (*trk)(); // recover G4 pointer if wanted
199 
200  // that was a temporary action while we're sorting out
201  // about # of secondaries (produced if CutsPerRegion=true)
202  //
203  std::cout << "Track ID " << aTrack->GetTrackID() << " Track parent ID " << aTrack->GetParentID()
204  << " PDG Id. = " << aTrack->GetDefinition()->GetPDGEncoding()
205  << " Ekin = " << aTrack->GetKineticEnergy() << " MeV" << std::endl;
206  if( aTrack->GetCreatorProcess() ) std::cout << " produced through " << aTrack->GetCreatorProcess()->GetProcessType() << std::endl;
207 
208  if(aTrack->GetTrackID() == 1) {
209  firstParticle = true;
210  } else {
211  firstParticle = false;
212  }
213 
214  if( storeDecay ) { // if record of the decay is requested
215  if( aTrack->GetCreatorProcess() ) {
216  if (
217  aTrack->GetParentID() == 1
218  &&
219  // aTrack->GetCreatorProcess()->GetProcessType() == 6
220  // &&
221  aTrack->GetKineticEnergy() > Ekin
222  ) {
223  // continue
224  } else {
225  G4Track * aTracknc = const_cast<G4Track*>(aTrack);
226  aTracknc->SetTrackStatus(fStopAndKill);
227  return;
228  }
229  } // particles produced from a decay (type=6) of the main particle (ID=1) with Kinetic Energy [MeV] > Ekin
230  } else { // kill all the other particles (take only the main one until it disappears) if decay not stored
231  if( aTrack->GetParentID() != 0) {
232  G4Track * aTracknc = const_cast<G4Track*>(aTrack);
233  aTracknc->SetTrackStatus(fStopAndKill);
234  return;
235  }
236  }
237 
238 
239  if(firstParticle) {
240  //--------- start of track
241  //- std::cout << " Data Start Track " << std::endl;
242  theData->dataStartTrack( aTrack );
246  }
247 }
248 
249 
250 //-------------------------------------------------------------------------
251 void MaterialBudgetAction::update(const G4Step* aStep)
252 {
253 
254  //----- Check it is inside one of the volumes selected
255  if( theVolumeList.size() != 0 ) {
256  if( !CheckTouchableInSelectedVolumes( aStep->GetTrack()->GetTouchable() ) ) return;
257  }
258 
259  //---------- each step
260  theData->dataPerStep( aStep );
261  //- std::cout << " aStep->GetPostStepPoint()->GetTouchable() " << aStep->GetPostStepPoint()->GetTouchable()->GetVolume() << " " << aStep->GetPreStepPoint()->GetTouchable()->GetVolume() << std::endl;
264  if (saveToTxt) theTxt->fillPerStep();
265 
266 
267  //----- Stop tracking after selected process
268  if( StopAfterProcess( aStep ) ) {
269  G4Track* track = aStep->GetTrack();
270  track->SetTrackStatus( fStopAndKill );
271  }
272 
273  return;
274 
275 }
276 
277 
278 //-------------------------------------------------------------------------
280 {
281  G4TouchableHistory* theTouchable
282  = (G4TouchableHistory*)(aStepPoint->GetTouchable());
283  G4int num_levels = theTouchable->GetHistoryDepth();
284 
285  if( theTouchable->GetVolume() ) {
286  return theTouchable->GetVolume(num_levels-1)->GetName();
287  } else {
288  return "OutOfWorld";
289  }
290 }
291 
292 
293 //-------------------------------------------------------------------------
295 {
296  G4TouchableHistory* theTouchable
297  = (G4TouchableHistory*)(aStepPoint->GetTouchable());
298  G4int num_levels = theTouchable->GetHistoryDepth();
299  // theTouchable->MoveUpHistory(num_levels-3);
300 
301  if( theTouchable->GetVolume() ) {
302  return theTouchable->GetVolume(num_levels-3)->GetName();
303  } else {
304  return "OutOfWorld";
305  }
306 }
307 
308 
309 
310 //-------------------------------------------------------------------------
312 {
313  // std::cout << " EndOfTrack " << saveToHistos << std::endl;
314  const G4Track * aTrack = (*trk)(); // recover G4 pointer if wanted
315  // if( aTrack->GetParentID() != 0 ) return;
316 
317  //---------- end of track (OutOfWorld)
318  //- std::cout << " Data End Track " << std::endl;
319  theData->dataEndTrack( aTrack );
320 }
321 
323 {
324  //- std::cout << " Data End Event " << std::endl;
327  if (saveToTxt) theTxt->fillEndTrack();
328 }
329 
330 //-------------------------------------------------------------------------
332 {
333 }
334 
335 
336 //-------------------------------------------------------------------------
338 {
339  std::vector<G4String>::const_iterator ite;
340  size_t volh = touch->GetHistoryDepth();
341  for( ite = theVolumeList.begin(); ite != theVolumeList.end(); ite++ ){
342  //- std::cout << " CheckTouchableInSelectedVolumes vol " << *ite << std::endl;
343  for( int ii = volh; ii >= 0; ii-- ){
344  //- std::cout << ii << " CheckTouchableInSelectedVolumes parent " << touch->GetVolume(ii)->GetName() << std::endl;
345  if( touch->GetVolume(ii)->GetName() == *ite ) return true;
346  }
347  }
348 
349  return false;
350 
351 }
352 
353 
354 //-------------------------------------------------------------------------
355 bool MaterialBudgetAction::StopAfterProcess( const G4Step* aStep )
356 {
357  if( theProcessToStop == "" ) return false;
358 
359  if(aStep->GetPostStepPoint()->GetProcessDefinedStep() == NULL) return false;
360  if( aStep->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName() == theProcessToStop ) {
361  std::cout << " MaterialBudgetAction::StopAfterProcess " << aStep->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName() << std::endl;
362  return true;
363  } else {
364  return false;
365  }
366 }
bool CheckTouchableInSelectedVolumes(const G4VTouchable *touch)
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
virtual void fillPerStep()
MaterialBudgetAction(const edm::ParameterSet &)
void update(const BeginOfRun *)
This routine will be called when the appropriate signal arrives.
#define NULL
Definition: scimark2.h:8
virtual void fillEndTrack()
int ii
Definition: cuy.py:588
virtual void fillEndTrack()
MaterialBudgetTxt * theTxt
virtual void fillStartTrack()
virtual void fillStartTrack()=0
void dataEndTrack(const G4Track *aTrack)
MaterialBudgetFormat * theHistos
void dataPerStep(const G4Step *aStep)
virtual void fillEndTrack()=0
MaterialBudgetData * theData
bool StopAfterProcess(const G4Step *aStep)
virtual void fillPerStep()
void dataStartTrack(const G4Track *aTrack)
std::string getPartName(G4StepPoint *aStepPoint)
tuple cout
Definition: gather_cfg.py:121
std::vector< G4String > theVolumeList
std::string getSubDetectorName(G4StepPoint *aStepPoint)
virtual void fillStartTrack()
void produce(edm::Event &, const edm::EventSetup &)
virtual void fillPerStep()=0
MaterialBudgetTree * theTree