Import Geant4 11.2.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2023-06-30 09:09:57 +02:00
parent aef78ca386
commit dd1f179cda
3780 changed files with 212808 additions and 142780 deletions
@@ -31,8 +31,9 @@
#define EXGFLASHSENSITIVEDETECTOR_H
#include "ExGflashHit.hh"
#include "G4VSensitiveDetector.hh"
#include "G4VGFlashSensitiveDetector.hh"
#include "G4VSensitiveDetector.hh"
#include "globals.hh"
class G4GFlashSpot;
@@ -42,23 +43,21 @@ class G4Step;
class G4HCofThisEvent;
class G4TouchableHistory;
class ExGflashSensitiveDetector
: public G4VSensitiveDetector
, public G4VGFlashSensitiveDetector
class ExGflashSensitiveDetector : public G4VSensitiveDetector, public G4VGFlashSensitiveDetector
{
public:
ExGflashSensitiveDetector(G4String, ExGflashDetectorConstruction* det);
~ExGflashSensitiveDetector() override;
public:
ExGflashSensitiveDetector(G4String, ExGflashDetectorConstruction* det);
~ExGflashSensitiveDetector() override;
void Initialize(G4HCofThisEvent*) override;
G4bool ProcessHits(G4Step*, G4TouchableHistory*) override;
G4bool ProcessHits(G4GFlashSpot* aSpot, G4TouchableHistory*) override;
void EndOfEvent(G4HCofThisEvent*) override;
void Initialize(G4HCofThisEvent*) override;
G4bool ProcessHits(G4Step*, G4TouchableHistory*) override;
G4bool ProcessHits(G4GFlashSpot* aSpot, G4TouchableHistory*) override;
void EndOfEvent(G4HCofThisEvent*) override;
private:
ExGflashHitsCollection* fCaloHitsCollection;
// ExGflashDetectorConstruction* fDetector;
G4int fHCID;
private:
ExGflashHitsCollection* fCaloHitsCollection;
// ExGflashDetectorConstruction* fDetector;
G4int fHCID{-1};
};
#endif