Import Geant4 10.5.1 source tree
This commit is contained in:
@@ -69,7 +69,7 @@ const ExN04CalorimeterHit& ExN04CalorimeterHit::operator=(const ExN04Calorimeter
|
||||
return *this;
|
||||
}
|
||||
|
||||
G4int ExN04CalorimeterHit::operator==(const ExN04CalorimeterHit &right) const
|
||||
G4bool ExN04CalorimeterHit::operator==(const ExN04CalorimeterHit &right) const
|
||||
{
|
||||
return ((ZCellID==right.ZCellID)&&(PhiCellID==right.PhiCellID));
|
||||
}
|
||||
|
||||
@@ -57,9 +57,9 @@ const ExN04MuonHit& ExN04MuonHit::operator=(const ExN04MuonHit &right)
|
||||
return *this;
|
||||
}
|
||||
|
||||
G4int ExN04MuonHit::operator==(const ExN04MuonHit &right) const
|
||||
G4bool ExN04MuonHit::operator==(const ExN04MuonHit &right) const
|
||||
{
|
||||
return (this==&right) ? 1 : 0;
|
||||
return (this==&right) ? true : false;
|
||||
}
|
||||
|
||||
void ExN04MuonHit::Draw()
|
||||
|
||||
@@ -57,9 +57,9 @@ const ExN04TrackerHit& ExN04TrackerHit::operator=(const ExN04TrackerHit &right)
|
||||
return *this;
|
||||
}
|
||||
|
||||
G4int ExN04TrackerHit::operator==(const ExN04TrackerHit &right) const
|
||||
G4bool ExN04TrackerHit::operator==(const ExN04TrackerHit &right) const
|
||||
{
|
||||
return (this==&right) ? 1 : 0;
|
||||
return (this==&right) ? true : false;
|
||||
}
|
||||
|
||||
void ExN04TrackerHit::Draw()
|
||||
|
||||
Reference in New Issue
Block a user