aboutsummaryrefslogtreecommitdiffstats
path: root/include/G4BeamTestRunManager.h.backup
diff options
context:
space:
mode:
authorshivesh <s.p.mandalia@qmul.ac.uk>2019-08-22 01:37:19 +0100
committershivesh <s.p.mandalia@qmul.ac.uk>2019-08-22 01:37:19 +0100
commite3079fb2367c26f767be41e6c313d960c517bbcd (patch)
tree509f081184a4179894ab8370ea06425d46729e9a /include/G4BeamTestRunManager.h.backup
parentba4dd395d1f163983f7102ff9a6c513cfe17912e (diff)
downloadG4BeamTest-e3079fb2367c26f767be41e6c313d960c517bbcd.tar.gz
G4BeamTest-e3079fb2367c26f767be41e6c313d960c517bbcd.zip
Thu 22 Aug 01:37:19 BST 2019
Diffstat (limited to 'include/G4BeamTestRunManager.h.backup')
-rw-r--r--include/G4BeamTestRunManager.h.backup34
1 files changed, 0 insertions, 34 deletions
diff --git a/include/G4BeamTestRunManager.h.backup b/include/G4BeamTestRunManager.h.backup
deleted file mode 100644
index a7eaff0..0000000
--- a/include/G4BeamTestRunManager.h.backup
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef TOPSIMULATOR_G4BEAMTESTRUNMANAGER_H
-#define TOPSIMULATOR_G4BEAMTESTRUNMANAGER_H
-
-#include <G4RunManager.hh>
-
-class G4ParticleGun;
-
-/**
- * Implementation of G4RunManager
- */
-class G4BeamTestRunManager: public G4RunManager
-{
- public:
- G4BeamTestRunManager();
-
- static G4BeamTestRunManager* GetIceTopRunManager() {return (G4BeamTestRunManager*)GetRunManager();}
-
- // Disable BeamOn
- void BeamOn(G4int n_event,const char* macroFile=0,G4int n_select=-1);
-
- void InitializeRun();
- void InjectParticle(G4ParticleGun* particleGun);
- void TerminateRun();
-
- protected:
- G4Event* GenerateEvent(G4int i_event);
-
- private:
- // This method is an exact copy of UpdateScoring which is private in the G4RunManager
- void Update_Scoring();
-
-};
-
-#endif