Import Geant4 10.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 11:51:14 +02:00
parent e2d2f9810a
commit 286caacf06
12421 changed files with 730077 additions and 502383 deletions
+18 -12
View File
@@ -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);
}