LDMX Software
UserRegionInformation.h
Go to the documentation of this file.
1
7#ifndef SIMCORE_USERREGIONINFORMATION_H_
8#define SIMCORE_USERREGIONINFORMATION_H_
9
10// Geant4
11#include "G4VUserRegionInformation.hh"
12
13namespace simcore {
14
25class UserRegionInformation : public G4VUserRegionInformation {
26 public:
27 UserRegionInformation(bool storeSecondaries);
28
29 virtual ~UserRegionInformation() = default;
30
31 void Print() const;
32
33 bool getStoreSecondaries() const;
34
35 private:
36 bool storeSecondaries_;
37};
38
39} // namespace simcore
40
41#endif
Defines extra information for a detector region.