LCIO
02.17
|
Adding stuff needed for io (friend declarations, etc.) More...
#include <ReconstructedParticleIOImpl.h>
Friends | |
class | SIO::SIOReconstructedParticleHandler |
Additional Inherited Members | |
![]() | |
typedef ReconstructedParticle | 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 |
![]() | |
ReconstructedParticleImpl () | |
Default constructor, initializes values to 0. More... | |
ReconstructedParticleImpl (const ReconstructedParticleImpl &)=default | |
default copy constructor - use with care More... | |
ReconstructedParticleImpl & | operator= (const ReconstructedParticleImpl &)=default |
default assignment operator - use with care More... | |
virtual | ~ReconstructedParticleImpl () |
Destructor. More... | |
virtual int | id () const |
Returns an object id for internal (debugging) use in LCIO. More... | |
virtual int | getType () const |
Type of reconstructed particle. More... | |
virtual bool | isCompound () const |
Convenient method - same as (getParticles().size() > 0 ). More... | |
virtual const double * | getMomentum () const |
The magnitude of the reconstructed particle's momentum,. More... | |
virtual double | getEnergy () const |
Energy of the reconstructed particle. More... | |
virtual const EVENT::FloatVec & | getCovMatrix () const |
Covariance matrix of the reconstructed particle's 4vector (10 parameters). More... | |
virtual double | getMass () const |
Mass of the reconstructed particle, set independently from four vector quantities. More... | |
virtual float | getCharge () const |
Charge of the reconstructed particle. More... | |
virtual const float * | getReferencePoint () const |
Reference point of the reconstructedParticle parameters. More... | |
virtual const EVENT::ParticleIDVec & | getParticleIDs () const |
The particle Id's sorted by their likelihood. More... | |
virtual EVENT::ParticleID * | getParticleIDUsed () const |
The particle Id used for the kinematics of this particle. More... | |
virtual float | getGoodnessOfPID () const |
The overall goodness of the PID on a scale of [0;1]. More... | |
virtual const EVENT::ReconstructedParticleVec & | getParticles () const |
The reconstructed particles that have been combined to this particle. More... | |
virtual const EVENT::ClusterVec & | getClusters () const |
The clusters that have been used for this particle. More... | |
virtual const EVENT::TrackVec & | getTracks () const |
The tracks that have been used for this particle. More... | |
virtual EVENT::Vertex * | getStartVertex () const |
The start vertex associated to this particle. More... | |
virtual EVENT::Vertex * | getEndVertex () const |
The vertex where the particle decays This method actually returns the start vertex from the first daughter particle found. More... | |
void | setType (int type) |
void | setMomentum (const float *momentum) |
void | setMomentum (const double *momentum) |
void | setEnergy (float energy) |
void | setCovMatrix (const float *cov) |
void | setCovMatrix (const EVENT::FloatVec &) |
void | setMass (float mass) |
void | setCharge (float charge) |
void | setReferencePoint (const float *reference) |
void | addParticleID (EVENT::ParticleID *pid) |
Set the type of reconstructed particle, one of: ReconstructedParticle::SINGLE, ReconstructedParticle::V0, ReconstructedParticle::COMPOUND, ReconstructedParticle::JET More... | |
void | setParticleIDUsed (EVENT::ParticleID *pid) |
void | setGoodnessOfPID (float goodness) |
void | addParticle (EVENT::ReconstructedParticle *particle) |
Add a particle that has been used to create this particle. More... | |
void | addCluster (EVENT::Cluster *cluster) |
Add a cluster that has been used to create this particle. More... | |
void | addTrack (EVENT::Track *track) |
Add a track that has been used to create this particle. More... | |
void | setStartVertex (EVENT::Vertex *sv) |
![]() | |
virtual | ~ReconstructedParticle () |
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 | _type {0} |
double | _momentum [3] = {0.,0.,0.} |
double | _energy {0.} |
EVENT::FloatVec | _cov {} |
double | _mass {0.} |
float | _charge {} |
float | _reference [3] = {0.,0.,0.} |
EVENT::ParticleID * | _pidUsed { NULL} |
float | _goodnessOfPID {0.} |
EVENT::ParticleIDVec | _pid {} |
EVENT::ReconstructedParticleVec | _particles {} |
EVENT::ClusterVec | _clusters {} |
EVENT::TrackVec | _tracks {} |
EVENT::Vertex * | _sv {} |
![]() | |
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 ReconstructedParticleIOImpl.h.
|
friend |
Definition at line 22 of file ReconstructedParticleIOImpl.h.