Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_ParticleFlowReco_PFSimParticleFwd_h
0002 #define DataFormats_ParticleFlowReco_PFSimParticleFwd_h
0003 #include <vector>
0004 #include "DataFormats/Common/interface/Ref.h"
0005 #include "DataFormats/Common/interface/RefVector.h"
0006 #include "DataFormats/Common/interface/RefProd.h"
0007 
0008 namespace reco {
0009   class PFSimParticle;
0010 
0011   /// collection of PFSimParticle objects
0012   typedef std::vector<PFSimParticle> PFSimParticleCollection;
0013 
0014   /// persistent reference to PFSimParticle objects
0015   typedef edm::Ref<PFSimParticleCollection> PFSimParticleRef;
0016 
0017   /// reference to PFSimParticle collection
0018   typedef edm::RefProd<PFSimParticleCollection> PFSimParticleRefProd;
0019 
0020   /// vector of references to PFSimParticle objects all in the same collection
0021   typedef edm::RefVector<PFSimParticleCollection> PFSimParticleRefVector;
0022 
0023   /// iterator over a vector of references to PFSimParticle objects
0024   typedef PFSimParticleRefVector::iterator pfSimParticle_iterator;
0025 }  // namespace reco
0026 
0027 #endif