Parent Directory
|
Revision Log
Geant4 code for ND and Calorimeter
| 1 | |
| 2 | #ifndef RunAction_h |
| 3 | #define RunAction_h 1 |
| 4 | |
| 5 | #include "G4UserRunAction.hh" |
| 6 | #include "globals.hh" |
| 7 | |
| 8 | |
| 9 | class RunAction : public G4UserRunAction |
| 10 | { |
| 11 | public: |
| 12 | RunAction(); |
| 13 | ~RunAction(); |
| 14 | |
| 15 | public: |
| 16 | virtual void BeginOfRunAction(const G4Run* aRun); |
| 17 | virtual void EndOfRunAction(const G4Run* aRun); |
| 18 | |
| 19 | |
| 20 | G4double Etube[36]; |
| 21 | G4double E1tube[36]; |
| 22 | G4double TimeTube[36]; |
| 23 | G4int tube[36]; |
| 24 | G4int N; |
| 25 | G4int noOfNeutrons; |
| 26 | private: |
| 27 | G4int runIDcounter; |
| 28 | }; |
| 29 | |
| 30 | #endif |
| 31 | |
| 32 | // 2005 by G.I.Vasilyev |
| 33 | |
| 34 | |
| 35 |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |