Import Geant4 11.3.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2024-06-28 13:08:51 +02:00
parent f7b23877ed
commit e58e650b32
5232 changed files with 239416 additions and 244360 deletions
+6 -6
View File
@@ -34,10 +34,11 @@
#include "TrackerHit.hh"
#include <vector>
#include "globals.hh"
class G4Step;
class G4HCofThisEvent;
class G4TouchableHistory;
namespace B2
{
@@ -51,19 +52,18 @@ namespace B2
class TrackerSD : public G4VSensitiveDetector
{
public:
TrackerSD(const G4String& name,
const G4String& hitsCollectionName);
TrackerSD(const G4String& name, const G4String& hitsCollectionName);
~TrackerSD() override = default;
// methods from base class
void Initialize(G4HCofThisEvent* hitCollection) override;
void Initialize(G4HCofThisEvent* hitCollection) override;
G4bool ProcessHits(G4Step* step, G4TouchableHistory* history) override;
void EndOfEvent(G4HCofThisEvent* hitCollection) override;
void EndOfEvent(G4HCofThisEvent* hitCollection) override;
private:
TrackerHitsCollection* fHitsCollection = nullptr;
};
}
} // namespace B2
#endif