| 33 | #include "G4Track.hh" |
| 34 | |
| 35 | void G4SmartTrackStack::dumpStatistics() |
| 36 | { |
| 37 | // Print to stderr so that we can split stats output from normal |
| 38 | // output of Geant4 which is typically being printed to stdout |
| 39 | for (G4int i=0; i<nTurn; ++i) |
| 40 | { |
| 41 | G4cerr << stacks[i]->GetNTrack() << " "; |
| 42 | G4cerr << stacks[i]->getTotalEnergy() << " "; |
| 43 | } |
| 44 | G4cerr << G4endl; |
| 45 | } |
| 46 | |
| 47 | G4SmartTrackStack::G4SmartTrackStack() |
| 48 | { |
nothing calls this directly
no test coverage detected