Import Geant4 10.5.0 source tree

This commit is contained in:
Gabriele Cosmo
2018-12-07 15:15:39 +01:00
parent 6aa23be517
commit db49709b53
11370 changed files with 187480 additions and 160142 deletions
@@ -23,7 +23,6 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: LXeEventAction.hh 109784 2018-05-09 08:14:08Z gcosmo $
//
/// \file optical/LXe/include/LXeEventAction.hh
/// \brief Definition of the LXeEventAction class
@@ -38,12 +37,13 @@
#include "G4ThreeVector.hh"
class G4Event;
class LXeDetectorConstruction;
class LXeEventAction : public G4UserEventAction
{
public:
LXeEventAction();
LXeEventAction(const LXeDetectorConstruction*);
virtual ~LXeEventAction();
public:
@@ -51,8 +51,6 @@ class LXeEventAction : public G4UserEventAction
virtual void BeginOfEventAction(const G4Event*);
virtual void EndOfEventAction(const G4Event*);
void SetSaveThreshold(G4int );
void SetEventVerbose(G4int v){fVerbose=v;}
void SetPMTThreshold(G4int t){fPMTThreshold=t;}
@@ -95,25 +93,21 @@ class LXeEventAction : public G4UserEventAction
void IncPMTSAboveThreshold(){fPMTsAboveThreshold++;}
G4int GetPMTSAboveThreshold(){return fPMTsAboveThreshold;}
private:
LXeEventMessenger* fEventMessenger;
const LXeDetectorConstruction* fDetector;
G4int fSaveThreshold;
G4int fScintCollID;
G4int fPMTCollID;
G4int fScintCollID;
G4int fPMTCollID;
G4int fVerbose;
G4int fVerbose;
G4int fPMTThreshold;
G4int fPMTThreshold;
G4bool fForcedrawphotons;
G4bool fForcenophotons;
G4int fHitCount;
G4int fPhotonCount_Scint;
G4int fPhotonCount_Ceren;
@@ -132,9 +126,6 @@ class LXeEventAction : public G4UserEventAction
G4double fEdepMax;
G4int fPMTsAboveThreshold;
};
#endif