Import Geant4 9.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 17:01:34 +02:00
parent b1eb5424d2
commit e2d2f9810a
10384 changed files with 698580 additions and 628834 deletions
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: DetectorConstruction.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/DetectorConstruction.hh
/// \brief Definition of the DetectorConstruction class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -62,54 +64,54 @@ class DetectorConstruction : public G4VUserDetectorConstruction
void PrintGeometry();
G4double GetThicknessWorld() {return thickness_World;};
G4double GetRadiusWorld() {return radius_World;};
G4double GetThicknessFrame() {return thickness_Frame;};
G4double GetThicknessWorld() {return fThickness_World;};
G4double GetRadiusWorld() {return fRadius_World;};
G4double GetThicknessFrame() {return fThickness_Frame;};
G4Material* GetMaterialScatter() {return material_ScatterFoil;};
G4double GetThicknessScatter() {return thickness_ScatterFoil;};
G4Material* GetMaterialScatter() {return fMaterial_ScatterFoil;};
G4double GetThicknessScatter() {return fThickness_ScatterFoil;};
const G4VPhysicalVolume* GetpvolWorld() {return pvol_World;};
const G4VPhysicalVolume* GetpvolFrame() {return pvol_Frame;};
const G4VPhysicalVolume* GetpvolWorld() {return fPvol_World;};
const G4VPhysicalVolume* GetpvolFrame() {return fPvol_Frame;};
private:
G4Material* material_World;
G4double radius_World;
G4double thickness_World;
G4Material* fMaterial_World;
G4double fRadius_World;
G4double fThickness_World;
G4Material* material_Frame;
G4double thickness_Frame;
G4double zfront_Frame;
G4Material* fMaterial_Frame;
G4double fThickness_Frame;
G4double fZfront_Frame;
G4Material* material_ExitWindow;
G4double thickness_ExitWindow;
G4double zfront_ExitWindow;
G4Material* fMaterial_ExitWindow;
G4double fThickness_ExitWindow;
G4double fZfront_ExitWindow;
G4Material* material_ScatterFoil;
G4double thickness_ScatterFoil;
G4double zfront_ScatterFoil;
G4Material* fMaterial_ScatterFoil;
G4double fThickness_ScatterFoil;
G4double fZfront_ScatterFoil;
G4Material* material_MonitorChbr;
G4double thickness_MonitorChbr;
G4double zfront_MonitorChbr;
G4Material* fMaterial_MonitorChbr;
G4double fThickness_MonitorChbr;
G4double fZfront_MonitorChbr;
G4Material* material_Bag;
G4double thickness_Bag;
G4double zfront_Bag;
G4Material* fMaterial_Bag;
G4double fThickness_Bag;
G4double fZfront_Bag;
G4Material* material_Gas;
G4double thickness_Gas;
G4Material* fMaterial_Gas;
G4double fThickness_Gas;
G4Material* material_Ring;
G4double thickness_Ring;
G4double inneradius_Ring;
G4Material* fMaterial_Ring;
G4double fThickness_Ring;
G4double fInnerRadius_Ring;
G4VPhysicalVolume* pvol_World;
G4VPhysicalVolume* pvol_Frame;
G4VPhysicalVolume* fPvol_World;
G4VPhysicalVolume* fPvol_Frame;
DetectorMessenger* detectorMessenger;
DetectorMessenger* fDetectorMessenger;
private:
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: DetectorMessenger.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/DetectorMessenger.hh
/// \brief Definition of the DetectorMessenger class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -52,14 +54,14 @@ class DetectorMessenger: public G4UImessenger
void SetNewValue(G4UIcommand*, G4String);
private:
DetectorConstruction* Detector;
DetectorConstruction* fDetector;
G4UIdirectory* testemDir;
G4UIdirectory* detDir;
G4UIdirectory* fTestemDir;
G4UIdirectory* fDetDir;
G4UIcmdWithAString* MaterCmd;
G4UIcmdWithADoubleAndUnit* ThickCmd;
G4UIcmdWithoutParameter* UpdateCmd;
G4UIcmdWithAString* fMaterCmd;
G4UIcmdWithADoubleAndUnit* fThickCmd;
G4UIcmdWithoutParameter* fUpdateCmd;
};
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: EventAction.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/EventAction.hh
/// \brief Definition of the EventAction class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -48,15 +50,15 @@ class EventAction : public G4UserEventAction
public:
void BeginOfEventAction(const G4Event*);
void EndOfEventAction(const G4Event*);
void SetDrawFlag(G4String val) {drawFlag = val;};
void SetPrintModulo(G4int val) {printModulo = val;};
void SetDrawFlag(G4String val) {fDrawFlag = val;};
void SetPrintModulo(G4int val) {fPrintModulo = val;};
private:
G4String drawFlag;
G4int printModulo;
G4String fDrawFlag;
G4int fPrintModulo;
EventMessenger* eventMessenger;
EventMessenger* fEventMessenger;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: EventMessenger.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/EventMessenger.hh
/// \brief Definition of the EventMessenger class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -51,10 +53,10 @@ class EventMessenger: public G4UImessenger
void SetNewValue(G4UIcommand*, G4String);
private:
EventAction* eventAction;
G4UIdirectory* eventDir;
G4UIcmdWithAString* DrawCmd;
G4UIcmdWithAnInteger* PrintCmd;
EventAction* fEventAction;
G4UIdirectory* fEventDir;
G4UIcmdWithAString* fDrawCmd;
G4UIcmdWithAnInteger* fPrintCmd;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,25 +23,24 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: HistoManager.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/HistoManager.hh
/// \brief Definition of the HistoManager class
//
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#ifndef HistoManager_h
#define HistoManager_h 1
#include "globals.hh"
#include "g4root.hh"
////#include "g4xml.hh"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
namespace AIDA {
class IAnalysisFactory;
class ITree;
class IHistogram1D;
}
class HistoMessenger;
const G4int MaxHisto = 5;
@@ -56,46 +55,41 @@ class HistoManager
~HistoManager();
void SetFileName (const G4String& name) { fileName[0] = name;};
void SetFileType (const G4String& name) { fileType = name;};
void SetFileOption (const G4String& name) { fileOption = name;};
void book();
void save();
void SetHisto (G4int,G4int,G4double,G4double,const G4String& unit="none");
void FillHisto(G4int id, G4double e, G4double weight = 1.0);
void RemoveHisto (G4int);
void Scale (G4int, G4double);
void Normalize(G4int id, G4double fac);
void PrintHisto (G4int);
G4bool HistoExist (G4int id) {return exist[id];}
G4int GetNbins (G4int id) {return Nbins[id];}
G4double GetHistoUnit(G4int id) {return Unit[id];}
G4double GetBinWidth (G4int id) {return Width[id];}
G4bool HistoExist (G4int id) {return fExist[id];}
G4int GetNbins (G4int id) {return fNbins[id];}
G4double GetHistoUnit(G4int id) {return fUnit[id];}
G4double GetBinWidth (G4int id) {return fWidth[id];}
G4String GetFileName () {return fileName[0];}
private:
G4String fileName[2];
G4String fileType;
G4String fileOption;
AIDA::IAnalysisFactory* af;
AIDA::ITree* tree;
AIDA::IHistogram1D* histo[MaxHisto];
G4bool exist[MaxHisto];
G4String Label[MaxHisto];
G4String Title[MaxHisto];
G4int Nbins[MaxHisto];
G4double Vmin [MaxHisto];
G4double Vmax [MaxHisto];
G4double Unit [MaxHisto];
G4double Width[MaxHisto];
G4bool ascii[MaxHisto];
G4String fileName[2];
G4bool factoryOn;
G4int fNbHist;
G4int fHistId[MaxHisto];
G4AnaH1* fHistPt[MaxHisto];
G4bool fExist[MaxHisto];
G4String fLabel[MaxHisto];
G4String fTitle[MaxHisto];
G4int fNbins[MaxHisto];
G4double fVmin [MaxHisto];
G4double fVmax [MaxHisto];
G4double fUnit [MaxHisto];
G4double fWidth[MaxHisto];
G4bool fAscii[MaxHisto];
G4bool factoryOn;
HistoMessenger* histoMessenger;
HistoMessenger* fHistoMessenger;
private:
void saveAscii();
void saveAscii();
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,11 +23,14 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: HistoMessenger.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/HistoMessenger.hh
/// \brief Definition of the HistoMessenger class
//
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#ifndef HistoMessenger_h
#define HistoMessenger_h 1
@@ -56,15 +59,12 @@ class HistoMessenger: public G4UImessenger
private:
HistoManager* histoManager;
HistoManager* fHistoManager;
G4UIdirectory* histoDir;
G4UIcmdWithAString* factoryCmd;
G4UIcmdWithAString* typeCmd;
G4UIcmdWithAString* optionCmd;
G4UIcommand* histoCmd;
G4UIcmdWithAnInteger* prhistoCmd;
G4UIcmdWithAnInteger* rmhistoCmd;
G4UIdirectory* fHistoDir;
G4UIcmdWithAString* fFileNameCmd;
G4UIcommand* fHistoCmd;
G4UIcmdWithAnInteger* fPrtHistoCmd;
};
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: PhysListEmStandard.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/PhysListEmStandard.hh
/// \brief Definition of the PhysListEmStandard class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: PhysListEmStandardGS.hh,v 1.1 2011-01-05 18:48:54 vnivanch Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/PhysListEmStandardGS.hh
/// \brief Definition of the PhysListEmStandardGS class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: PhysListEmStandardSS.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/PhysListEmStandardSS.hh
/// \brief Definition of the PhysListEmStandardSS class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,9 +23,11 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
/// \file medical/electronScattering/include/PhysListEmStandardWVI.hh
/// \brief Definition of the PhysListEmStandardWVI class
//
// $Id: PhysListEmStandardWVI.hh,v 1.1 2011-01-05 18:48:54 vnivanch Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: PhysicsList.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/PhysicsList.hh
/// \brief Definition of the PhysicsList class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -61,14 +63,14 @@ public:
private:
PhysicsListMessenger* pMessenger;
PhysicsListMessenger* fMessenger;
G4String emName;
G4VPhysicsConstructor* emPhysicsList;
G4String fEmName;
G4VPhysicsConstructor* fEmPhysicsList;
G4double cutForGamma;
G4double cutForElectron;
G4double cutForPositron;
G4double fCutForGamma;
G4double fCutForElectron;
G4double fCutForPositron;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: PhysicsListMessenger.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/PhysicsListMessenger.hh
/// \brief Definition of the PhysicsListMessenger class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -53,14 +55,14 @@ class PhysicsListMessenger: public G4UImessenger
private:
PhysicsList* pPhysicsList;
PhysicsList* fPhysicsList;
G4UIdirectory* physDir;
G4UIcmdWithAString* pListCmd;
G4UIcmdWithADoubleAndUnit* gammaCutCmd;
G4UIcmdWithADoubleAndUnit* electCutCmd;
G4UIcmdWithADoubleAndUnit* protoCutCmd;
G4UIcmdWithADoubleAndUnit* allCutCmd;
G4UIdirectory* fPhysDir;
G4UIcmdWithAString* fListCmd;
G4UIcmdWithADoubleAndUnit* fGammaCutCmd;
G4UIcmdWithADoubleAndUnit* fElectCutCmd;
G4UIcmdWithADoubleAndUnit* fProtoCutCmd;
G4UIcmdWithADoubleAndUnit* fAllCutCmd;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: PrimaryGeneratorAction.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/PrimaryGeneratorAction.hh
/// \brief Definition of the PrimaryGeneratorAction class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -49,16 +51,16 @@ class PrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction
~PrimaryGeneratorAction();
public:
void SetRndmBeam(G4double val) {rndmBeam = val;};
void SetRndmBeam(G4double val) {fRndmBeam = val;};
void GeneratePrimaries(G4Event*);
G4ParticleGun* GetParticleGun() {return particleGun;};
G4ParticleGun* GetParticleGun() {return fParticleGun;};
private:
G4ParticleGun* particleGun;
DetectorConstruction* detector;
G4double z0, r2World, rndmBeam;
G4ParticleGun* fParticleGun;
DetectorConstruction* fDetector;
G4double fZ0, fR2World, fRndmBeam;
PrimaryGeneratorMessenger* gunMessenger;
PrimaryGeneratorMessenger* fGunMessenger;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: PrimaryGeneratorMessenger.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/PrimaryGeneratorMessenger.hh
/// \brief Definition of the PrimaryGeneratorMessenger class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -50,10 +52,10 @@ class PrimaryGeneratorMessenger: public G4UImessenger
void SetNewValue(G4UIcommand*, G4String);
private:
PrimaryGeneratorAction* Action;
PrimaryGeneratorAction* fAction;
G4UIdirectory* gunDir;
G4UIcmdWithADoubleAndUnit* RndmCmd;
G4UIdirectory* fGunDir;
G4UIcmdWithADoubleAndUnit* fRndmCmd;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: RunAction.hh,v 1.2 2010-01-05 15:35:32 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/RunAction.hh
/// \brief Definition of the RunAction class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -62,18 +64,18 @@ class RunAction : public G4UserRunAction
void PrintFluence(G4int);
private:
DetectorConstruction* detector;
PrimaryGeneratorAction* primary;
HistoManager* histoManager;
DetectorConstruction* fDetector;
PrimaryGeneratorAction* fPrimary;
HistoManager* fHistoManager;
//for fluence computation
//
G4int nbBins;
G4double dr;
G4int fNbBins;
G4double fDr;
std::vector<G4double> fluence;
std::vector<G4double> fluence1; //normalized fluence
std::vector<G4double> fluence2; //rms on norm. fl
std::vector<G4int> nbEntries; //entries per bin
std::vector<G4double> fluence1; //normalized fluence
std::vector<G4double> fluence2; //rms on norm. fl
std::vector<G4int> fNbEntries; //entries per bin
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: StepMax.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/StepMax.hh
/// \brief Definition of the StepMax class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -50,11 +52,11 @@ class StepMax : public G4VDiscreteProcess
G4bool IsApplicable(const G4ParticleDefinition&);
void SetMaxStep(G4double);
G4double GetMaxStep() {return MaxChargedStep;};
G4double GetMaxStep() {return fMaxChargedStep;};
G4double PostStepGetPhysicalInteractionLength( const G4Track& track,
G4double previousStepSize,
G4ForceCondition* condition);
G4double previousStepSize,
G4ForceCondition* condition);
G4VParticleChange* PostStepDoIt(const G4Track&, const G4Step&);
@@ -63,8 +65,8 @@ class StepMax : public G4VDiscreteProcess
private:
G4double MaxChargedStep;
StepMaxMessenger* pMess;
G4double fMaxChargedStep;
StepMaxMessenger* fMess;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: StepMaxMessenger.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/StepMaxMessenger.hh
/// \brief Definition of the StepMaxMessenger class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -49,8 +51,8 @@ class StepMaxMessenger: public G4UImessenger
void SetNewValue(G4UIcommand*, G4String);
private:
StepMax* pStepMax;
G4UIcmdWithADoubleAndUnit* StepMaxCmd;
StepMax* fStepMax;
G4UIcmdWithADoubleAndUnit* fStepMaxCmd;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: SteppingVerbose.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/SteppingVerbose.hh
/// \brief Definition of the SteppingVerbose class
//
// $Id$
//
// This class manages the verbose outputs in G4SteppingManager.
// It inherits from G4SteppingVerbose.
@@ -23,8 +23,10 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: TrackingAction.hh,v 1.1 2009-09-19 16:09:44 maire Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
/// \file medical/electronScattering/include/TrackingAction.hh
/// \brief Definition of the TrackingAction class
//
// $Id$
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -51,11 +53,11 @@ class TrackingAction : public G4UserTrackingAction {
void PostUserTrackingAction(const G4Track*);
private:
DetectorConstruction* detector;
RunAction* runaction;
HistoManager* histoManager;
DetectorConstruction* fDetector;
RunAction* fRunAction;
HistoManager* fHistoManager;
G4double Zend;
G4double fZend;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......