82 lines
3.0 KiB
C++
82 lines
3.0 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * 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: Em8CalorHit.cc,v 1.4 2003/11/24 17:52:47 vnivanch Exp $
|
|
// GEANT4 tag $Name: geant4-06-00-patch-01 $
|
|
//
|
|
//
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#include "Em8CalorHit.hh"
|
|
|
|
G4Allocator<Em8CalorHit> Em8CalorHitAllocator;
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
Em8CalorHit::Em8CalorHit():G4VHit()
|
|
{
|
|
EdepAbs = 0.; TrackLengthAbs = 0.;
|
|
EdepGap = 0.; TrackLengthGap = 0.;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
Em8CalorHit::~Em8CalorHit()
|
|
{}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
Em8CalorHit::Em8CalorHit(const Em8CalorHit& right):G4VHit(right)
|
|
{
|
|
EdepAbs = right.EdepAbs; TrackLengthAbs = right.TrackLengthAbs;
|
|
EdepGap = right.EdepGap; TrackLengthGap = right.TrackLengthGap;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
const Em8CalorHit& Em8CalorHit::operator=(const Em8CalorHit& right)
|
|
{
|
|
if(this != &right) {
|
|
EdepAbs = right.EdepAbs; TrackLengthAbs = right.TrackLengthAbs;
|
|
EdepGap = right.EdepGap; TrackLengthGap = right.TrackLengthGap;
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
int Em8CalorHit::operator==(const Em8CalorHit& right) const
|
|
{
|
|
return ((Em8CalorHit *)this == (Em8CalorHit *) &right);
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void Em8CalorHit::Print()
|
|
{;}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|