#include <DataFormats/PatCandidates/interface/Particle.h>
Public Member Functions | |
virtual Particle * | clone () const |
Particle (const ParticleType &aParticle) | |
constructor from ParticleType | |
Particle () | |
default constructor | |
virtual | ~Particle () |
destructor |
Particle implements an analysis-level particle class within the 'pat' namespace.
Definition at line 36 of file Particle.h.
Particle::Particle | ( | ) |
default constructor
Definition at line 12 of file Particle.cc.
Referenced by clone().
00012 : PATObject<ParticleType>(ParticleType(0, ParticleType::LorentzVector(0, 0, 0, 0), ParticleType::Point(0,0,0))) { 00013 }
Particle::Particle | ( | const ParticleType & | aParticle | ) |
constructor from ParticleType
Definition at line 17 of file Particle.cc.
00017 : PATObject<ParticleType>(aParticle) { 00018 }
Particle::~Particle | ( | ) | [virtual] |
Definition at line 44 of file Particle.h.
References Particle().
00044 { return new Particle(*this); }