Files
geant4/examples/extended/electromagnetic/TestEm6/include/Em6CalorHit.hh
T
2016-06-08 15:28:20 +02:00

82 lines
2.2 KiB
C++

// This code implementation is the intellectual property of
// the GEANT4 collaboration.
//
// By copying, distributing or modifying the Program (or any work
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// Class Description:
// The set of hits is defined
// Class Description - end
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
#ifndef Em6CalorHit_h
#define Em6CalorHit_h 1
#include "G4VHit.hh"
#include "G4THitsCollection.hh"
#include "G4Allocator.hh"
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
class Em6CalorHit : public G4VHit
{
public: // Without description
Em6CalorHit();
~Em6CalorHit();
Em6CalorHit(const Em6CalorHit&);
const Em6CalorHit& operator=(const Em6CalorHit&);
int operator==(const Em6CalorHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
void Print();
public:
void AddAbs(G4double de, G4double dl) {EdepAbs += de; TrackLengthAbs += dl;};
void AddGap(G4double de, G4double dl) {EdepGap += de; TrackLengthGap += dl;};
G4double GetEdepAbs() { return EdepAbs; };
G4double GetTrakAbs() { return TrackLengthAbs; };
G4double GetEdepGap() { return EdepGap; };
G4double GetTrakGap() { return TrackLengthGap; };
private:
G4double EdepAbs, TrackLengthAbs;
G4double EdepGap, TrackLengthGap;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
typedef G4THitsCollection<Em6CalorHit> Em6CalorHitsCollection;
extern G4Allocator<Em6CalorHit> Em6CalorHitAllocator;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
inline void* Em6CalorHit::operator new(size_t)
{
void* aHit;
aHit = (void*) Em6CalorHitAllocator.MallocSingle();
return aHit;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
inline void Em6CalorHit::operator delete(void* aHit)
{
Em6CalorHitAllocator.FreeSingle((Em6CalorHit*) aHit);
}
#endif