1 |
nikolas |
1.1 |
#ifndef PAMG4_RUN_CONFIGURATION_H |
2 |
|
|
#define PAMG4_RUN_CONFIGURATION_H |
3 |
|
|
|
4 |
|
|
#include <TG4RunConfiguration.h> |
5 |
|
|
|
6 |
|
|
|
7 |
|
|
class PamG4RunConfiguration : public TG4RunConfiguration |
8 |
|
|
{ |
9 |
|
|
public: |
10 |
|
|
PamG4RunConfiguration(const TString& userGeometry = "geomRootToGeant4", |
11 |
|
|
const TString& physicsList = "QGSP_BIC_HP", |
12 |
|
|
const TString& specialProcess = "specialCuts+specialControls+stepLimiter"); |
13 |
|
|
virtual ~PamG4RunConfiguration(); |
14 |
|
|
|
15 |
|
|
// methods |
16 |
|
|
virtual G4VUserPhysicsList* CreatePhysicsList(); |
17 |
|
|
|
18 |
|
|
ClassDef(PamG4RunConfiguration,1) |
19 |
|
|
}; |
20 |
|
|
|
21 |
|
|
#endif //PAMG4_RUN_CONFIGURATION_H |
22 |
|
|
|