69 lines
1.9 KiB
C++
69 lines
1.9 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.
|
|
//
|
|
// $Id: ExN03CalorHit.cc,v 1.2 1999/12/15 14:49:25 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
//
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#include "ExN03CalorHit.hh"
|
|
|
|
G4Allocator<ExN03CalorHit> ExN03CalorHitAllocator;
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
ExN03CalorHit::ExN03CalorHit()
|
|
{
|
|
EdepAbs = 0.; TrackLengthAbs = 0.;
|
|
EdepGap = 0.; TrackLengthGap = 0.;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
ExN03CalorHit::~ExN03CalorHit()
|
|
{;}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
ExN03CalorHit::ExN03CalorHit(const ExN03CalorHit& right)
|
|
{
|
|
EdepAbs = right.EdepAbs; TrackLengthAbs = right.TrackLengthAbs;
|
|
EdepGap = right.EdepGap; TrackLengthGap = right.TrackLengthGap;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
const ExN03CalorHit& ExN03CalorHit::operator=(const ExN03CalorHit& right)
|
|
{
|
|
EdepAbs = right.EdepAbs; TrackLengthAbs = right.TrackLengthAbs;
|
|
EdepGap = right.EdepGap; TrackLengthGap = right.TrackLengthGap;
|
|
return *this;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
int ExN03CalorHit::operator==(const ExN03CalorHit& right) const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void ExN03CalorHit::Draw()
|
|
{;}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void ExN03CalorHit::Print()
|
|
{;}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|