BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
InstallArea/include/BesSim/BesSim/StepLimiter.hh
Go to the documentation of this file.
1//---------------------------------------------------------------------------//
2// BOOST --- BESIII Object_Oriented Simulation Tool //
3//---------------------------------------------------------------------------//
4//Description: Includes G4Steplimiter as process for the different Particles.
5// However, particles will only be affected by this process, if
6// G4UserLimit is associated to a volume. This method is used in
7// BesTofConstruction::ConstructMRPC()
8//Author: Matthias Ullrich
9//Created: October, 2011
10//Modified:
11//Comment:
12//---------------------------------------------------------------------------//
13//$ID: StepLimiter.hh
14
15
16
17
18#ifndef StepLimiter_h
19#define StepLimiter_h 1
20
21#include "G4VPhysicsConstructor.hh"
22#include "globals.hh"
23
24//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
25
26class StepLimiter : public G4VPhysicsConstructor
27{
28public:
29 StepLimiter(G4int ver = 0, const G4String& name = "StepLimiter");
30 virtual ~StepLimiter();
31
32 virtual void ConstructParticle();
33 virtual void ConstructProcess();
34
35private:
36
37 G4int verbose;
38
39};
40
41//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42
43#endif
virtual ~StepLimiter()
Definition: StepLimiter.cc:52
virtual void ConstructParticle()
Definition: StepLimiter.cc:57
virtual void ConstructProcess()
Definition: StepLimiter.cc:88