97 lines
3.2 KiB
C++
Executable File
97 lines
3.2 KiB
C++
Executable File
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: PhysicsList.hh,v 1.2 2003/10/31 12:08:50 vnivanch Exp $
|
|
// GEANT4 tag $Name: geant4-06-00-patch-01 $
|
|
//
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
//
|
|
// 14.10.02 (V.Ivanchenko) provide modular list on base of old PhysicsList
|
|
//
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#ifndef PhysicsList_h
|
|
#define PhysicsList_h 1
|
|
|
|
#include "G4VModularPhysicsList.hh"
|
|
#include "globals.hh"
|
|
|
|
class G4VPhysicsConstructor;
|
|
class StepMax;
|
|
class PhysicsListMessenger;
|
|
class G4ProductionCuts;
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
class PhysicsList: public G4VModularPhysicsList
|
|
{
|
|
public:
|
|
PhysicsList();
|
|
~PhysicsList();
|
|
|
|
void ConstructParticle();
|
|
|
|
void SetCuts();
|
|
void SetCutForGamma(G4double);
|
|
void SetCutForElectron(G4double);
|
|
void SetCutForPositron(G4double);
|
|
|
|
void AddPhysicsList(const G4String& name);
|
|
void ConstructProcess();
|
|
|
|
void AddStepMax();
|
|
StepMax* GetStepMaxProcess() {return stepMaxProcess;};
|
|
|
|
void SetVertexCut(G4double val);
|
|
void SetMuonCut(G4double val);
|
|
|
|
private:
|
|
|
|
// hide assignment operator
|
|
PhysicsList & operator=(const PhysicsList &right);
|
|
PhysicsList(const PhysicsList&);
|
|
|
|
G4double cutForGamma;
|
|
G4double cutForElectron;
|
|
G4double cutForPositron;
|
|
|
|
G4VPhysicsConstructor* emPhysicsList;
|
|
G4VPhysicsConstructor* generalPhysicsList;
|
|
G4VPhysicsConstructor* particleList;
|
|
std::vector<G4VPhysicsConstructor*> hadronPhys;
|
|
G4String emName;
|
|
|
|
StepMax* stepMaxProcess;
|
|
|
|
PhysicsListMessenger* pMessenger;
|
|
G4ProductionCuts* vertexDetectorCuts;
|
|
G4ProductionCuts* muonDetectorCuts;
|
|
|
|
};
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#endif
|
|
|