Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:58

0001 //
0002 //
0003 
0004 #include "DataFormats/PatCandidates/interface/Particle.h"
0005 
0006 using namespace pat;
0007 
0008 /// default constructor
0009 Particle::Particle()
0010     : PATObject<reco::LeafCandidate>(reco::LeafCandidate(
0011           0, reco::LeafCandidate::LorentzVector(0, 0, 0, 0), reco::LeafCandidate::Point(0, 0, 0))) {}
0012 
0013 /// constructor from reco::LeafCandidate
0014 Particle::Particle(const reco::LeafCandidate& aParticle) : PATObject<reco::LeafCandidate>(aParticle) {}
0015 
0016 /// destructor
0017 Particle::~Particle() {}