forked from WCSim/WCSim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWCSimTrackInformation.hh
53 lines (39 loc) · 1.52 KB
/
WCSimTrackInformation.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef WCSimTrackInformation_h
#define WCSimTrackInformation_h 1
#include "globals.hh"
#include "G4Track.hh"
#include "G4Allocator.hh"
#include "G4VUserTrackInformation.hh"
// Maximilien Fechner, december 2004
// Information class for flagging the secondaries
// I'm interested in (namely gammas from pi0s and secondaries
// from muon decay
class WCSimTrackInformation : public G4VUserTrackInformation {
private:
G4bool saveit;
G4int primaryParentID;
public:
WCSimTrackInformation() : saveit(false), primaryParentID(-1) {}
WCSimTrackInformation(const WCSimTrackInformation* aninfo)
{ saveit = aninfo->saveit; primaryParentID = aninfo->primaryParentID;}
virtual ~WCSimTrackInformation() {}
WCSimTrackInformation(const G4Track* );
G4bool isSaved() { return saveit;}
void WillBeSaved(G4bool choice) { saveit = choice;}
void SetPrimaryParentID(G4int i) { primaryParentID = i;}
G4int GetPrimaryParentID() {return primaryParentID;}
inline void *operator new(size_t);
inline void operator delete(void *aTrackInfo);
inline int operator ==(const WCSimTrackInformation& right) const
{return (this==&right);}
void Print() const;
};
extern G4Allocator<WCSimTrackInformation> aWCSimTrackInfoAllocator;
inline void* WCSimTrackInformation::operator new(size_t)
{ void* aTrackInfo;
aTrackInfo = (void*)aWCSimTrackInfoAllocator.MallocSingle();
return aTrackInfo;
}
inline void WCSimTrackInformation::operator delete(void *aTrackInfo)
{ aWCSimTrackInfoAllocator.FreeSingle((WCSimTrackInformation*)aTrackInfo);}
#endif