CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
MaterialBudgetAction Class Reference

#include <MaterialBudgetAction.h>

Inheritance diagram for MaterialBudgetAction:
SimWatcher Observer< const BeginOfRun * > Observer< const BeginOfTrack * > Observer< const G4Step * > Observer< const EndOfTrack * >

Public Member Functions

 MaterialBudgetAction (const edm::ParameterSet &)
 
virtual ~MaterialBudgetAction ()
 
- Public Member Functions inherited from SimWatcher
 SimWatcher ()
 
virtual ~SimWatcher ()
 
- Public Member Functions inherited from Observer< const BeginOfRun * >
 Observer ()
 
void slotForUpdate (const BeginOfRun *iT)
 
virtual ~Observer ()
 
- Public Member Functions inherited from Observer< const BeginOfTrack * >
 Observer ()
 
void slotForUpdate (const BeginOfTrack *iT)
 
virtual ~Observer ()
 
- Public Member Functions inherited from Observer< const G4Step * >
 Observer ()
 
void slotForUpdate (const G4Step *iT)
 
virtual ~Observer ()
 
- Public Member Functions inherited from Observer< const EndOfTrack * >
 Observer ()
 
void slotForUpdate (const EndOfTrack *iT)
 
virtual ~Observer ()
 

Private Member Functions

bool CheckTouchableInSelectedVolumes (const G4VTouchable *touch)
 
std::string getPartName (G4StepPoint *aStepPoint)
 
std::string getSubDetectorName (G4StepPoint *aStepPoint)
 
 MaterialBudgetAction (const MaterialBudgetAction &)
 
const MaterialBudgetActionoperator= (const MaterialBudgetAction &)
 
void save (const G4Step *aStep)
 
bool StopAfterProcess (const G4Step *aStep)
 
void update (const BeginOfRun *)
 This routine will be called when the appropriate signal arrives. More...
 
void update (const BeginOfTrack *)
 This routine will be called when the appropriate signal arrives. More...
 
void update (const G4Step *)
 This routine will be called when the appropriate signal arrives. More...
 
void update (const EndOfTrack *)
 This routine will be called when the appropriate signal arrives. More...
 

Private Attributes

double Ekin
 
bool firstParticle
 
bool saveToHistos
 
bool saveToTree
 
bool saveToTxt
 
bool storeDecay
 
MaterialBudgetDatatheData
 
std::string theHistoList
 
TestHistoMgrtheHistoMgr
 
MaterialBudgetFormattheHistos
 
G4String theProcessToStop
 
MaterialBudgetTreetheTree
 
MaterialBudgetTxttheTxt
 
std::vector< G4String > theVolumeList
 

Additional Inherited Members

Detailed Description

Definition at line 29 of file MaterialBudgetAction.h.

Constructor & Destructor Documentation

MaterialBudgetAction::MaterialBudgetAction ( const edm::ParameterSet iPSet)

Definition at line 30 of file MaterialBudgetAction.cc.

References gather_cfg::cout, Ekin, firstParticle, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), saveToHistos, saveToTree, saveToTxt, MaterialBudgetData::SetAllStepsToTree(), storeDecay, AlCaHLTBitMon_QueryRunRegistry::string, theData, theHistoList, theHistoMgr, theHistos, theProcessToStop, theTree, theTxt, and theVolumeList.

31  : theHistoMgr(0)
32 {
34 
35  edm::ParameterSet m_Anal = iPSet.getParameter<edm::ParameterSet>("MaterialBudgetAction");
36 
37  //---- Accumulate material budget only inside selected volumes
38  std::string theHistoList = m_Anal.getParameter<std::string>("HistogramList");
39  std::vector<std::string> volList = m_Anal.getParameter< std::vector<std::string> >("SelectedVolumes");
40  std::vector<std::string>::const_iterator ite;
41  std::cout << "TestGeometry: List of the selected volumes: " << std::endl;
42  for( ite = volList.begin(); ite != volList.end(); ite++ ){
43  if( (*ite) != "None" ) {
44  theVolumeList.push_back( *ite );
45  std::cout << (*ite) << std::endl;
46  }
47  }
48  // log
49  if(theHistoList == "Tracker" ) {
50  std::cout << "TestGeometry: MaterialBudgetAction running in Tracker Mode" << std::endl;
51  }
52  else if(theHistoList == "ECAL" ) {
53  std::cout << "TestGeometry: MaterialBudgetAction running in Ecal Mode" << std::endl;
54  }
55  else {
56  std::cout << "TestGeometry: MaterialBudgetAction running in General Mode" << std::endl;
57  }
58  //
59 
60  //---- Stop track when a process occurs
61  theProcessToStop = m_Anal.getParameter<std::string>("StopAfterProcess");
62  std::cout << "TestGeometry: stop at process " << theProcessToStop << std::endl;
63 
64  //---- Save histos to ROOT file
65  std::string saveToHistosFile = m_Anal.getParameter<std::string>("HistosFile");
66  if( saveToHistosFile != "None" ) {
67  saveToHistos = true;
68  std::cout << "TestGeometry: saving histograms to " << saveToHistosFile << std::endl;
69  theHistoMgr = new TestHistoMgr();
70 
71  // rr
72  if(theHistoList == "Tracker" ) {
73  theHistos = new MaterialBudgetTrackerHistos( theData, theHistoMgr, saveToHistosFile );
74  }
75  else if (theHistoList == "ECAL") {
76  theHistos = new MaterialBudgetEcalHistos( theData, theHistoMgr, saveToHistosFile );
77  }
78  else {
79  theHistos = new MaterialBudgetHistos( theData, theHistoMgr, saveToHistosFile );
80  }
81  // rr
82  } else {
83  saveToHistos = false;
84  }
85 
86  //---- Save material budget info to TEXT file
87  std::string saveToTxtFile = m_Anal.getParameter<std::string>("TextFile");
88  if( saveToTxtFile != "None" ) {
89  saveToTxt = true;
90  std::cout << "TestGeometry: saving text info to " << saveToTxtFile << std::endl;
91  theTxt = new MaterialBudgetTxt( theData, saveToTxtFile );
92  } else {
93  saveToTxt = false;
94  }
95 
96  //---- Compute all the steps even if not stored on file
97  bool allSteps = m_Anal.getParameter<bool>("AllStepsToTree");
98  std::cout << "TestGeometry: all steps are computed " << allSteps << std::endl;
99  if( allSteps ) theData->SetAllStepsToTree();
100 
101  //---- Save tree to ROOT file
102  std::string saveToTreeFile = m_Anal.getParameter<std::string>("TreeFile");
103  // std::string saveToTreeFile = "";
104  if( saveToTreeFile != "None" ) {
105  saveToTree = true;
106  theTree = new MaterialBudgetTree( theData, saveToTreeFile );
107  } else {
108  saveToTree = false;
109  }
110  std::cout << "TestGeometry: saving ROOT TREE to " << saveToTreeFile << std::endl;
111 
112  //---- Track the first decay products of the main particle
113  // if their kinetic energy is greater than Ekin
114  storeDecay = m_Anal.getUntrackedParameter<bool>("storeDecay",false);
115  Ekin = m_Anal.getUntrackedParameter<double>("EminDecayProd",1000.0); // MeV
116  std::cout << "TestGeometry: decay products steps are stored " << storeDecay;
117  if(storeDecay) std::cout << " if their kinetic energy is greater than " << Ekin << " MeV";
118  std::cout << std::endl;
119  firstParticle = false;
120  }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
MaterialBudgetTxt * theTxt
MaterialBudgetFormat * theHistos
MaterialBudgetData * theData
tuple cout
Definition: gather_cfg.py:121
std::vector< G4String > theVolumeList
MaterialBudgetTree * theTree
MaterialBudgetAction::~MaterialBudgetAction ( )
virtual

Definition at line 124 of file MaterialBudgetAction.cc.

References saveToHistos, saveToTree, saveToTxt, theData, theHistoMgr, theHistos, theTree, and theTxt.

125 {
126  if (saveToTxt) delete theTxt;
127  if (saveToTree) delete theTree;
128  if (saveToHistos) delete theHistos;
129  if (theHistoMgr) delete theHistoMgr;
130  delete theData;
131 }
MaterialBudgetTxt * theTxt
MaterialBudgetFormat * theHistos
MaterialBudgetData * theData
MaterialBudgetTree * theTree
MaterialBudgetAction::MaterialBudgetAction ( const MaterialBudgetAction )
private

Member Function Documentation

bool MaterialBudgetAction::CheckTouchableInSelectedVolumes ( const G4VTouchable *  touch)
private

Definition at line 315 of file MaterialBudgetAction.cc.

References cuy::ii, and theVolumeList.

Referenced by update().

316 {
317  std::vector<G4String>::const_iterator ite;
318  size_t volh = touch->GetHistoryDepth();
319  for( ite = theVolumeList.begin(); ite != theVolumeList.end(); ite++ ){
320  //- std::cout << " CheckTouchableInSelectedVolumes vol " << *ite << std::endl;
321  for( int ii = volh; ii >= 0; ii-- ){
322  //- std::cout << ii << " CheckTouchableInSelectedVolumes parent " << touch->GetVolume(ii)->GetName() << std::endl;
323  if( touch->GetVolume(ii)->GetName() == *ite ) return true;
324  }
325  }
326 
327  return false;
328 }
int ii
Definition: cuy.py:588
std::vector< G4String > theVolumeList
std::string MaterialBudgetAction::getPartName ( G4StepPoint *  aStepPoint)
private

Definition at line 284 of file MaterialBudgetAction.cc.

285 {
286  G4TouchableHistory* theTouchable
287  = (G4TouchableHistory*)(aStepPoint->GetTouchable());
288  G4int num_levels = theTouchable->GetHistoryDepth();
289  // theTouchable->MoveUpHistory(num_levels-3);
290 
291  if( theTouchable->GetVolume() ) {
292  return theTouchable->GetVolume(num_levels-3)->GetName();
293  } else {
294  return "OutOfWorld";
295  }
296 }
std::string MaterialBudgetAction::getSubDetectorName ( G4StepPoint *  aStepPoint)
private

Definition at line 269 of file MaterialBudgetAction.cc.

270 {
271  G4TouchableHistory* theTouchable
272  = (G4TouchableHistory*)(aStepPoint->GetTouchable());
273  G4int num_levels = theTouchable->GetHistoryDepth();
274 
275  if( theTouchable->GetVolume() ) {
276  return theTouchable->GetVolume(num_levels-1)->GetName();
277  } else {
278  return "OutOfWorld";
279  }
280 }
const MaterialBudgetAction& MaterialBudgetAction::operator= ( const MaterialBudgetAction )
private
void MaterialBudgetAction::save ( const G4Step *  aStep)
private
bool MaterialBudgetAction::StopAfterProcess ( const G4Step *  aStep)
private

Definition at line 331 of file MaterialBudgetAction.cc.

References gather_cfg::cout, NULL, and theProcessToStop.

Referenced by update().

332 {
333  if( theProcessToStop == "" ) return false;
334 
335  if(aStep->GetPostStepPoint()->GetProcessDefinedStep() == NULL) return false;
336  if( aStep->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName() == theProcessToStop ) {
337  std::cout << " MaterialBudgetAction::StopAfterProcess " << aStep->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName() << std::endl;
338  return true;
339  } else {
340  return false;
341  }
342 }
#define NULL
Definition: scimark2.h:8
tuple cout
Definition: gather_cfg.py:121
void MaterialBudgetAction::update ( const BeginOfRun )
privatevirtual

This routine will be called when the appropriate signal arrives.

Implements Observer< const BeginOfRun * >.

Definition at line 134 of file MaterialBudgetAction.cc.

References ecal_dqm_sourceclient-live_cfg::cerr, cuy::ii, findQualityFiles::jj, AlCaHLTBitMon_QueryRunRegistry::string, theProcessToStop, and theVolumeList.

Referenced by MatrixUtil.Matrix::__setitem__(), MatrixUtil.Steps::__setitem__(), Vispa.Gui.VispaWidget.VispaWidget::autosize(), Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Views.LineDecayView.LineDecayContainer::deselectAllObjects(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::deselectAllWidgets(), Vispa.Gui.VispaWidget.VispaWidget::enableAutosizing(), Vispa.Gui.MenuWidget.MenuWidget::leaveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseMoveEvent(), Vispa.Gui.MenuWidget.MenuWidget::mouseMoveEvent(), Vispa.Views.LineDecayView.LineDecayContainer::mouseMoveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseReleaseEvent(), Vispa.Views.LineDecayView.LineDecayContainer::objectMoved(), MatrixUtil.Steps::overwrite(), Vispa.Views.LineDecayView.LineDecayContainer::removeObject(), Vispa.Gui.ConnectableWidget.ConnectableWidget::removePorts(), Vispa.Gui.FindDialog.FindDialog::reset(), Vispa.Gui.PortConnection.PointToPointConnection::select(), Vispa.Gui.VispaWidget.VispaWidget::select(), Vispa.Views.LineDecayView.LineDecayContainer::select(), Vispa.Gui.VispaWidget.VispaWidget::setText(), Vispa.Gui.VispaWidget.VispaWidget::setTitle(), Vispa.Gui.ZoomableWidget.ZoomableWidget::setZoom(), Vispa.Views.LineDecayView.LineDecayContainer::setZoom(), and Vispa.Gui.PortConnection.PointToPointConnection::updateConnection().

135 {
136  //----- Check that selected volumes are indeed part of the geometry
137  const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
138  std::vector<G4LogicalVolume*>::const_iterator lvcite;
139  std::vector<G4String>::const_iterator volcite;
140 
141  for( volcite = theVolumeList.begin(); volcite != theVolumeList.end(); volcite++ ){
142  bool volFound = false;
143  for( lvcite = lvs->begin(); lvcite != lvs->end(); lvcite++ ) {
144  if( (*lvcite)->GetName() == *volcite ) {
145  volFound = true;
146  break;
147  }
148  }
149  if( !volFound ) {
150  std::cerr << " @@@@@@@ WARNING at MaterialBudgetAction: selected volume not found in geometry " << *volcite << std::endl;
151  }
152  }
153 
154 
155  //----- Check process selected is one of the available ones
156  bool procFound = false;
157  if( theProcessToStop == "None" ) {
158  procFound = true;
159  } else {
160  G4ParticleTable * partTable = G4ParticleTable::GetParticleTable();
161  int siz = partTable->size();
162  for (int ii= 0; ii < siz; ii++) {
163  G4ParticleDefinition * particle = partTable->GetParticle(ii);
164  std::string particleName = particle->GetParticleName();
165 
166  //--- All processes of this particle
167  G4ProcessManager * pmanager = particle->GetProcessManager();
168  G4ProcessVector * pvect = pmanager->GetProcessList();
169  int sizproc = pvect->size();
170  for (int jj = 0; jj < sizproc; jj++) {
171  if( (*pvect)[jj]->GetProcessName() == theProcessToStop ) {
172  procFound = true;
173  break;
174  }
175  }
176  }
177  }
178 
179  if( !procFound ) {
180  std::cerr << " @@@@@@@ WARNING at MaterialBudgetAction: selected process to stop tracking not found " << theProcessToStop << std::endl;
181  }
182 
183 }
int ii
Definition: cuy.py:588
std::vector< G4String > theVolumeList
void MaterialBudgetAction::update ( const BeginOfTrack )
privatevirtual

This routine will be called when the appropriate signal arrives.

Implements Observer< const BeginOfTrack * >.

Definition at line 187 of file MaterialBudgetAction.cc.

References gather_cfg::cout, MaterialBudgetData::dataStartTrack(), Ekin, MaterialBudgetFormat::fillStartTrack(), MaterialBudgetTxt::fillStartTrack(), MaterialBudgetTree::fillStartTrack(), firstParticle, saveToHistos, saveToTree, saveToTxt, storeDecay, theData, theHistos, theTree, and theTxt.

Referenced by MatrixUtil.Matrix::__setitem__(), MatrixUtil.Steps::__setitem__(), Vispa.Gui.VispaWidget.VispaWidget::autosize(), Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Views.LineDecayView.LineDecayContainer::deselectAllObjects(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::deselectAllWidgets(), Vispa.Gui.VispaWidget.VispaWidget::enableAutosizing(), Vispa.Gui.MenuWidget.MenuWidget::leaveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseMoveEvent(), Vispa.Gui.MenuWidget.MenuWidget::mouseMoveEvent(), Vispa.Views.LineDecayView.LineDecayContainer::mouseMoveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseReleaseEvent(), Vispa.Views.LineDecayView.LineDecayContainer::objectMoved(), MatrixUtil.Steps::overwrite(), Vispa.Views.LineDecayView.LineDecayContainer::removeObject(), Vispa.Gui.ConnectableWidget.ConnectableWidget::removePorts(), Vispa.Gui.FindDialog.FindDialog::reset(), Vispa.Gui.PortConnection.PointToPointConnection::select(), Vispa.Gui.VispaWidget.VispaWidget::select(), Vispa.Views.LineDecayView.LineDecayContainer::select(), Vispa.Gui.VispaWidget.VispaWidget::setText(), Vispa.Gui.VispaWidget.VispaWidget::setTitle(), Vispa.Gui.ZoomableWidget.ZoomableWidget::setZoom(), Vispa.Views.LineDecayView.LineDecayContainer::setZoom(), and Vispa.Gui.PortConnection.PointToPointConnection::updateConnection().

188 {
189  const G4Track * aTrack = (*trk)(); // recover G4 pointer if wanted
190 
191  // that was a temporary action while we're sorting out
192  // about # of secondaries (produced if CutsPerRegion=true)
193  //
194  std::cout << "Track ID " << aTrack->GetTrackID() << " Track parent ID " << aTrack->GetParentID()
195  << " PDG Id. = " << aTrack->GetDefinition()->GetPDGEncoding()
196  << " Ekin = " << aTrack->GetKineticEnergy() << " MeV" << std::endl;
197  if( aTrack->GetCreatorProcess() ) std::cout << " produced through " << aTrack->GetCreatorProcess()->GetProcessType() << std::endl;
198 
199  if(aTrack->GetTrackID() == 1) {
200  firstParticle = true;
201  } else {
202  firstParticle = false;
203  }
204 
205  if( storeDecay ) { // if record of the decay is requested
206  if( aTrack->GetCreatorProcess() ) {
207  if (
208  aTrack->GetParentID() == 1
209  &&
210  // aTrack->GetCreatorProcess()->GetProcessType() == 6
211  // &&
212  aTrack->GetKineticEnergy() > Ekin
213  ) {
214  // continue
215  } else {
216  G4Track * aTracknc = const_cast<G4Track*>(aTrack);
217  aTracknc->SetTrackStatus(fStopAndKill);
218  return;
219  }
220  } // particles produced from a decay (type=6) of the main particle (ID=1) with Kinetic Energy [MeV] > Ekin
221  } else { // kill all the other particles (take only the main one until it disappears) if decay not stored
222  if( aTrack->GetParentID() != 0) {
223  G4Track * aTracknc = const_cast<G4Track*>(aTrack);
224  aTracknc->SetTrackStatus(fStopAndKill);
225  return;
226  }
227  }
228 
229 
230  if(firstParticle) {
231  //--------- start of track
232  //- std::cout << " Data Start Track " << std::endl;
233  theData->dataStartTrack( aTrack );
237  }
238 }
MaterialBudgetTxt * theTxt
virtual void fillStartTrack()
virtual void fillStartTrack()=0
MaterialBudgetFormat * theHistos
MaterialBudgetData * theData
void dataStartTrack(const G4Track *aTrack)
tuple cout
Definition: gather_cfg.py:121
virtual void fillStartTrack()
MaterialBudgetTree * theTree
void MaterialBudgetAction::update ( const G4Step *  )
privatevirtual

This routine will be called when the appropriate signal arrives.

Implements Observer< const G4Step * >.

Definition at line 242 of file MaterialBudgetAction.cc.

References CheckTouchableInSelectedVolumes(), MaterialBudgetData::dataPerStep(), MaterialBudgetFormat::fillPerStep(), MaterialBudgetTxt::fillPerStep(), MaterialBudgetTree::fillPerStep(), saveToHistos, saveToTree, saveToTxt, StopAfterProcess(), theData, theHistos, theTree, theTxt, and theVolumeList.

Referenced by MatrixUtil.Matrix::__setitem__(), MatrixUtil.Steps::__setitem__(), Vispa.Gui.VispaWidget.VispaWidget::autosize(), Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Views.LineDecayView.LineDecayContainer::deselectAllObjects(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::deselectAllWidgets(), Vispa.Gui.VispaWidget.VispaWidget::enableAutosizing(), Vispa.Gui.MenuWidget.MenuWidget::leaveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseMoveEvent(), Vispa.Gui.MenuWidget.MenuWidget::mouseMoveEvent(), Vispa.Views.LineDecayView.LineDecayContainer::mouseMoveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseReleaseEvent(), Vispa.Views.LineDecayView.LineDecayContainer::objectMoved(), MatrixUtil.Steps::overwrite(), Vispa.Views.LineDecayView.LineDecayContainer::removeObject(), Vispa.Gui.ConnectableWidget.ConnectableWidget::removePorts(), Vispa.Gui.FindDialog.FindDialog::reset(), Vispa.Gui.PortConnection.PointToPointConnection::select(), Vispa.Gui.VispaWidget.VispaWidget::select(), Vispa.Views.LineDecayView.LineDecayContainer::select(), Vispa.Gui.VispaWidget.VispaWidget::setText(), Vispa.Gui.VispaWidget.VispaWidget::setTitle(), Vispa.Gui.ZoomableWidget.ZoomableWidget::setZoom(), Vispa.Views.LineDecayView.LineDecayContainer::setZoom(), and Vispa.Gui.PortConnection.PointToPointConnection::updateConnection().

243 {
244  //----- Check it is inside one of the volumes selected
245  if( theVolumeList.size() != 0 ) {
246  if( !CheckTouchableInSelectedVolumes( aStep->GetTrack()->GetTouchable() ) ) return;
247  }
248 
249  //---------- each step
250  theData->dataPerStep( aStep );
251  //- std::cout << " aStep->GetPostStepPoint()->GetTouchable() " << aStep->GetPostStepPoint()->GetTouchable()->GetVolume() << " " << aStep->GetPreStepPoint()->GetTouchable()->GetVolume() << std::endl;
254  if (saveToTxt) theTxt->fillPerStep();
255 
256 
257  //----- Stop tracking after selected process
258  if( StopAfterProcess( aStep ) ) {
259  G4Track* track = aStep->GetTrack();
260  track->SetTrackStatus( fStopAndKill );
261  }
262 
263  return;
264 
265 }
bool CheckTouchableInSelectedVolumes(const G4VTouchable *touch)
virtual void fillPerStep()
MaterialBudgetTxt * theTxt
MaterialBudgetFormat * theHistos
void dataPerStep(const G4Step *aStep)
MaterialBudgetData * theData
bool StopAfterProcess(const G4Step *aStep)
virtual void fillPerStep()
std::vector< G4String > theVolumeList
virtual void fillPerStep()=0
MaterialBudgetTree * theTree
void MaterialBudgetAction::update ( const EndOfTrack )
privatevirtual

This routine will be called when the appropriate signal arrives.

Implements Observer< const EndOfTrack * >.

Definition at line 299 of file MaterialBudgetAction.cc.

References MaterialBudgetData::dataEndTrack(), MaterialBudgetFormat::fillEndTrack(), MaterialBudgetTxt::fillEndTrack(), MaterialBudgetTree::fillEndTrack(), saveToHistos, saveToTree, saveToTxt, theData, theHistos, theTree, and theTxt.

Referenced by MatrixUtil.Matrix::__setitem__(), MatrixUtil.Steps::__setitem__(), Vispa.Gui.VispaWidget.VispaWidget::autosize(), Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Views.LineDecayView.LineDecayContainer::deselectAllObjects(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::deselectAllWidgets(), Vispa.Gui.VispaWidget.VispaWidget::enableAutosizing(), Vispa.Gui.MenuWidget.MenuWidget::leaveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseMoveEvent(), Vispa.Gui.MenuWidget.MenuWidget::mouseMoveEvent(), Vispa.Views.LineDecayView.LineDecayContainer::mouseMoveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseReleaseEvent(), Vispa.Views.LineDecayView.LineDecayContainer::objectMoved(), MatrixUtil.Steps::overwrite(), Vispa.Views.LineDecayView.LineDecayContainer::removeObject(), Vispa.Gui.ConnectableWidget.ConnectableWidget::removePorts(), Vispa.Gui.FindDialog.FindDialog::reset(), Vispa.Gui.PortConnection.PointToPointConnection::select(), Vispa.Gui.VispaWidget.VispaWidget::select(), Vispa.Views.LineDecayView.LineDecayContainer::select(), Vispa.Gui.VispaWidget.VispaWidget::setText(), Vispa.Gui.VispaWidget.VispaWidget::setTitle(), Vispa.Gui.ZoomableWidget.ZoomableWidget::setZoom(), Vispa.Views.LineDecayView.LineDecayContainer::setZoom(), and Vispa.Gui.PortConnection.PointToPointConnection::updateConnection().

300 {
301  const G4Track * aTrack = (*trk)(); // recover G4 pointer if wanted
302  // if( aTrack->GetParentID() != 0 ) return;
303 
304  //---------- end of track (OutOfWorld)
305  //- std::cout << " Data End Track " << std::endl;
306  theData->dataEndTrack( aTrack );
307 
308  //- std::cout << " Data End Event " << std::endl;
311  if (saveToTxt) theTxt->fillEndTrack();
312 }
virtual void fillEndTrack()
virtual void fillEndTrack()
MaterialBudgetTxt * theTxt
void dataEndTrack(const G4Track *aTrack)
MaterialBudgetFormat * theHistos
virtual void fillEndTrack()=0
MaterialBudgetData * theData
MaterialBudgetTree * theTree

Member Data Documentation

double MaterialBudgetAction::Ekin
private

Definition at line 62 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), and update().

bool MaterialBudgetAction::firstParticle
private

Definition at line 63 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), and update().

bool MaterialBudgetAction::saveToHistos
private

Definition at line 60 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), update(), and ~MaterialBudgetAction().

bool MaterialBudgetAction::saveToTree
private

Definition at line 60 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), update(), and ~MaterialBudgetAction().

bool MaterialBudgetAction::saveToTxt
private

Definition at line 60 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), update(), and ~MaterialBudgetAction().

bool MaterialBudgetAction::storeDecay
private

Definition at line 61 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), and update().

MaterialBudgetData* MaterialBudgetAction::theData
private

Definition at line 55 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), update(), and ~MaterialBudgetAction().

std::string MaterialBudgetAction::theHistoList
private

Definition at line 67 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction().

TestHistoMgr* MaterialBudgetAction::theHistoMgr
private

Definition at line 59 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), and ~MaterialBudgetAction().

MaterialBudgetFormat* MaterialBudgetAction::theHistos
private

Definition at line 57 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), update(), and ~MaterialBudgetAction().

G4String MaterialBudgetAction::theProcessToStop
private

Definition at line 66 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), StopAfterProcess(), and update().

MaterialBudgetTree* MaterialBudgetAction::theTree
private

Definition at line 56 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), update(), and ~MaterialBudgetAction().

MaterialBudgetTxt* MaterialBudgetAction::theTxt
private

Definition at line 58 of file MaterialBudgetAction.h.

Referenced by MaterialBudgetAction(), update(), and ~MaterialBudgetAction().

std::vector<G4String> MaterialBudgetAction::theVolumeList
private