Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef RUNACTION_H
00017 #define RUNACTION_H
00018
00019
00020
00021 #include "G4UserRunAction.hh"
00022
00023
00024
00025 class G4Timer;
00026 class G4Run;
00027 class TFile;
00028 class TTree;
00029
00030
00031
00032 class RunAction : public G4UserRunAction {
00033
00034 public:
00035
00036
00037
00038 RunAction();
00039
00040
00041
00042 ~RunAction();
00043
00044
00045
00046
00047
00048 void BeginOfRunAction( const G4Run * run );
00049
00050
00051
00052 void EndOfRunAction( const G4Run * run );
00053
00054 private:
00055
00056
00057
00058 friend class EventAction;
00059
00060 static G4Timer * Timer;
00061
00062 static TFile * File;
00063
00064 static TTree * Tree;
00065
00066 };
00067
00068 #endif