Warning, file /include/HepMC3/Data/GenVertexData.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006 #ifndef HEPMC3_DATA_GENVERTEXDATA_H
0007 #define HEPMC3_DATA_GENVERTEXDATA_H
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #include "HepMC3/FourVector.h"
0019
0020 namespace HepMC3 {
0021
0022 struct GenVertexData {
0023 int status;
0024 FourVector position;
0025
0026
0027 bool is_zero() const {
0028 if( status ) return false;
0029
0030 return position.is_zero();
0031 }
0032 };
0033
0034 }
0035
0036 #endif