Import Geant4 10.0.0 source tree
This commit is contained in:
@@ -24,34 +24,40 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id$
|
||||
// $Id: G4HEPEvtParticle.cc 69010 2013-04-15 09:34:16Z gcosmo $
|
||||
//
|
||||
//
|
||||
|
||||
#include "G4HEPEvtParticle.hh"
|
||||
|
||||
G4Allocator<G4HEPEvtParticle> aHEPEvtParticleAllocator;
|
||||
G4ThreadLocal G4Allocator<G4HEPEvtParticle> *aHEPEvtParticleAllocator = 0;
|
||||
|
||||
G4HEPEvtParticle::G4HEPEvtParticle()
|
||||
: theParticle(0), ISTHEP(1), JDAHEP1(1), JDAHEP2(1)
|
||||
{;}
|
||||
{
|
||||
}
|
||||
|
||||
G4HEPEvtParticle::G4HEPEvtParticle(G4PrimaryParticle* pp,
|
||||
G4int isthep, G4int jdahep1, G4int jdahep2)
|
||||
: theParticle(pp),ISTHEP(isthep),JDAHEP1(jdahep1),JDAHEP2(jdahep2)
|
||||
{;}
|
||||
{
|
||||
}
|
||||
|
||||
G4HEPEvtParticle::~G4HEPEvtParticle()
|
||||
{;}
|
||||
{
|
||||
}
|
||||
|
||||
G4HEPEvtParticle& G4HEPEvtParticle::operator=(const G4HEPEvtParticle &)
|
||||
{ return *this; }
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
G4int G4HEPEvtParticle::operator==(const G4HEPEvtParticle &right) const
|
||||
{ return (this==&right); }
|
||||
{
|
||||
return (this==&right);
|
||||
}
|
||||
|
||||
G4int G4HEPEvtParticle::operator!=(const G4HEPEvtParticle &right) const
|
||||
{ return (this!=&right); }
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
return (this!=&right);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user