CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_1/src/DataFormats/JetReco/interface/GenJetCollection.h

Go to the documentation of this file.
00001 // F.R.
00002 // $Id: GenJetCollection.h,v 1.5 2010/04/13 20:29:52 srappocc Exp $
00003 #ifndef JetReco_GenJetCollection_h
00004 #define JetReco_GenJetCollection_h
00005 
00006 #include <vector>
00007 #include "DataFormats/Common/interface/Ref.h"
00008 #include "DataFormats/Common/interface/FwdRef.h"
00009 #include "DataFormats/Common/interface/FwdPtr.h"
00010 #include "DataFormats/Common/interface/RefVector.h"
00011 
00012 #include "DataFormats/JetReco/interface/GenJet.h"//INCLUDECHECKER:SKIP
00013 
00014 namespace reco {
00015   class GenJet;
00017   typedef std::vector<GenJet> GenJetCollection;
00019   typedef edm::Ref<GenJetCollection> GenJetRef;
00020   typedef edm::FwdRef<GenJetCollection> GenJetFwdRef;
00021   typedef edm::FwdPtr<GenJet> GenJetFwdPtr;
00022   typedef edm::RefVector<GenJetCollection> GenJetRefVector;
00023   typedef edm::RefProd<GenJetCollection> GenJetRefProd;
00024   typedef std::vector<edm::FwdRef<GenJetCollection> > GenJetFwdRefVector;
00025   typedef std::vector<edm::FwdPtr<GenJet> > GenJetFwdPtrVector;
00026 }
00027 #endif