CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
G4SimVertex Class Reference

#include <G4SimVertex.h>

Public Member Functions

 G4SimVertex ()
 
 G4SimVertex (const math::XYZVectorD &ip, double it, int iv, unsigned int typ=0)
 
const int parentIndex () const
 
const unsigned int processType () const
 
const double vertexGlobalTime () const
 
const math::XYZVectorDvertexPosition () const
 index of the parent (-1 if no parent) More...
 

Private Attributes

math::XYZVectorD ilv_
 
double itime_
 
int itrack_
 
unsigned int procType_
 

Detailed Description

Definition at line 9 of file G4SimVertex.h.

Constructor & Destructor Documentation

G4SimVertex::G4SimVertex ( )
inline

Definition at line 12 of file G4SimVertex.h.

12 {}
G4SimVertex::G4SimVertex ( const math::XYZVectorD ip,
double  it,
int  iv,
unsigned int  typ = 0 
)
inline

Definition at line 13 of file G4SimVertex.h.

13  :
14  ilv_(ip),itime_(it),itrack_(iv),procType_(typ) {}
unsigned int procType_
Definition: G4SimVertex.h:24
double itime_
Definition: G4SimVertex.h:22
math::XYZVectorD ilv_
Definition: G4SimVertex.h:21

Member Function Documentation

const int G4SimVertex::parentIndex ( ) const
inline

Definition at line 18 of file G4SimVertex.h.

References itrack_.

Referenced by G4SimEvent::load().

18 { return itrack_; }
const unsigned int G4SimVertex::processType ( ) const
inline

Definition at line 19 of file G4SimVertex.h.

References procType_.

Referenced by G4SimEvent::load().

19 { return procType_; }
unsigned int procType_
Definition: G4SimVertex.h:24
const double G4SimVertex::vertexGlobalTime ( ) const
inline

Definition at line 17 of file G4SimVertex.h.

References itime_.

Referenced by G4SimEvent::load().

17 { return itime_; }
double itime_
Definition: G4SimVertex.h:22
const math::XYZVectorD& G4SimVertex::vertexPosition ( ) const
inline

index of the parent (-1 if no parent)

Definition at line 16 of file G4SimVertex.h.

References ilv_.

Referenced by G4SimEvent::load().

16 { return ilv_; }
math::XYZVectorD ilv_
Definition: G4SimVertex.h:21

Member Data Documentation

math::XYZVectorD G4SimVertex::ilv_
private

Definition at line 21 of file G4SimVertex.h.

Referenced by vertexPosition().

double G4SimVertex::itime_
private

Definition at line 22 of file G4SimVertex.h.

Referenced by vertexGlobalTime().

int G4SimVertex::itrack_
private

Definition at line 23 of file G4SimVertex.h.

Referenced by parentIndex().

unsigned int G4SimVertex::procType_
private

Definition at line 24 of file G4SimVertex.h.

Referenced by processType().