| 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& physicsList = "QGSP_BERT", |
| 13 |
//const TString& specialProcess = "specialCuts+specialControls+stepLimiter"); |
| 14 |
const TString& specialProcess = "stepLimiter"); |
| 15 |
virtual ~PamG4RunConfiguration(); |
| 16 |
|
| 17 |
// methods |
| 18 |
virtual G4VUserPhysicsList* CreatePhysicsList(); |
| 19 |
|
| 20 |
ClassDef(PamG4RunConfiguration,1) |
| 21 |
}; |
| 22 |
|
| 23 |
#endif //PAMG4_RUN_CONFIGURATION_H |
| 24 |
|