79 lines
1.9 KiB
Plaintext
79 lines
1.9 KiB
Plaintext
// 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: G4PPrimaryVertex.ddl,v 1.7 1999/12/05 22:32:26 morita Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
//
|
|
|
|
|
|
#ifndef G4PPrimaryVertex_h
|
|
#define G4PPrimaryVertex_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4ThreeVector.hh"
|
|
#include "G4PersistentTypes.hh"
|
|
#include "G4PersistentSchema.hh"
|
|
|
|
class G4PrimaryVertex;
|
|
class G4PPrimaryParticle;
|
|
#pragma ooclassref G4PPrimaryParticle "G4PPrimaryParticle_ref.hh"
|
|
|
|
#include "HepODBMS/odbms/HepODBMS.h"
|
|
|
|
class G4PPrimaryVertex
|
|
: public HepPersObj
|
|
{
|
|
public:
|
|
G4PPrimaryVertex();
|
|
G4PPrimaryVertex(const G4PrimaryVertex* vertex);
|
|
~G4PPrimaryVertex();
|
|
|
|
G4PrimaryVertex* MakeTransientObject();
|
|
|
|
private:
|
|
G4Pdouble X0;
|
|
G4Pdouble Y0;
|
|
G4Pdouble Z0;
|
|
G4Pdouble T0;
|
|
d_Ref<G4PPrimaryParticle> theParticle;
|
|
d_Ref<G4PPrimaryParticle> theTail;
|
|
d_Ref<G4PPrimaryVertex> nextVertex;
|
|
G4Pint numberOfParticle;
|
|
|
|
public:
|
|
inline G4ThreeVector GetPosition() const
|
|
{ return G4ThreeVector(X0,Y0,Z0); }
|
|
inline G4double GetX0() const
|
|
{ return X0; }
|
|
inline G4double GetY0() const
|
|
{ return Y0; }
|
|
inline G4double GetZ0() const
|
|
{ return Z0; }
|
|
inline G4double GetT0() const
|
|
{ return T0; }
|
|
inline G4int GetNumberOfParticle() const
|
|
{ return numberOfParticle; }
|
|
|
|
HepRef(G4PPrimaryParticle) GetPrimary(G4int i) const;
|
|
|
|
inline void SetNext(HepRef(G4PPrimaryVertex) nv)
|
|
{
|
|
if(nextVertex == NULL)
|
|
{ nextVertex = nv; }
|
|
else
|
|
{ nextVertex->SetNext(nv); }
|
|
}
|
|
|
|
inline HepRef(G4PPrimaryVertex) GetNext() const
|
|
{ return nextVertex; }
|
|
|
|
};
|
|
|
|
#endif
|
|
|