LCIO
02.17
|
Adding stuff needed for io (friend declarations, etc.) More...
#include <VertexIOImpl.h>
Friends | |
class | SIO::SIOVertexHandler |
Additional Inherited Members | |
![]() | |
typedef Vertex | lcobject_type |
Useful typedef for template programming with LCIO. More... | |
![]() | |
typedef std::type_index | ext_index |
typedef std::shared_ptr< void > | ext_type |
typedef std::map< ext_index, ext_type > | ext_map |
![]() | |
VertexImpl () | |
Default constructor, initializes values to 0. More... | |
VertexImpl (const VertexImpl &)=default | |
default copy constructor - use with care More... | |
VertexImpl & | operator= (const VertexImpl &)=default |
default assignment operator - use with care More... | |
virtual | ~VertexImpl () |
virtual int | id () const |
Returns an object id for internal (debugging) use in LCIO. More... | |
virtual bool | isPrimary () const |
Checks if the Vertex is the primary vertex of the event. More... | |
virtual const std::string & | getAlgorithmType () const |
Type code for the algorithm that has been used to create the vertex - check/set the collection parameters AlgorithmName and AlgorithmType. More... | |
virtual float | getChi2 () const |
Chi squared of the vertex fit. More... | |
virtual float | getProbability () const |
Probability of the vertex fit. More... | |
virtual const float * | getPosition () const |
Position of the vertex. More... | |
virtual const EVENT::FloatVec & | getCovMatrix () const |
Covariance matrix of the position (stored as lower triangle matrix, i.e. More... | |
virtual const EVENT::FloatVec & | getParameters () const |
Additional parameters related to this vertex - check/set the collection parameter "VertexParameterNames" for the parameters' meaning. More... | |
virtual EVENT::ReconstructedParticle * | getAssociatedParticle () const |
Returns Reconstructed Particle associated to the Vertex. More... | |
void | setPrimary (bool primary) |
void | setAlgorithmType (std::string type) |
void | setChi2 (float chi2) |
void | setProbability (float probability) |
void | setPosition (const float vpos[3]) |
void | setPosition (float px, float py, float pz) |
void | setCovMatrix (const float *cov) |
void | setCovMatrix (const EVENT::FloatVec &) |
void | setAssociatedParticle (EVENT::ReconstructedParticle *aP) |
void | addParameter (float p) |
![]() | |
virtual | ~Vertex () |
Destructor. More... | |
![]() | |
virtual | ~LCObject () |
Destructor. More... | |
virtual LCObject * | clone () const |
Returns an object id for internal (debugging) use in LCIO. More... | |
![]() | |
template<class V > | |
V::ext_type | ext () |
Provides access to an extension object - the type and ownership is defined by the class V which should be a subtype of LCExtension, LCOwnedExtension, LCExtensionVector, LCExtensionList,... More... | |
template<class V > | |
const V::ext_type | ext () const |
Provides access to an extension object - the type and ownership is defined by the class V which should be a subtype of LCExtension, LCOwnedExtension, LCExtensionVector, LCExtensionList,... More... | |
template<class V > | |
V::rel_type | rel () |
Provides read access to relations - the object types and their connectivity are defined by the class V which has to be a subtype of either LC1To1Relation, LC1ToNRelation or LCNToNRelation. More... | |
![]() | |
AccessChecked () | |
virtual | ~AccessChecked () |
virtual int | simpleUID () const |
![]() | |
virtual void | setReadOnly (bool readOnly) |
void | checkAccess () |
void | checkAccess (const char *what) |
![]() | |
int | _primary |
std::string | _type |
float | _chi2 |
float | _probability |
float | _vpos [3] ={0,0,0} |
EVENT::FloatVec | _cov |
EVENT::FloatVec | _par |
EVENT::ReconstructedParticle * | _aParticle |
![]() | |
bool | _readOnly {false} |
int | _id {-1} |
![]() | |
static std::atomic_int | _lCObjectId |
Adding stuff needed for io (friend declarations, etc.)
Definition at line 20 of file VertexIOImpl.h.
|
friend |
Definition at line 22 of file VertexIOImpl.h.