Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DATAFORMATS_ECALRECHIT_ECALRECHITCOLLECTION_H
0002 #define DATAFORMATS_ECALRECHIT_ECALRECHITCOLLECTION_H
0003 
0004 #include "DataFormats/Common/interface/SortedCollection.h"
0005 #include "DataFormats/EcalRecHit/interface/EcalRecHit.h"
0006 #include "DataFormats/EcalRecHit/interface/EcalUncalibratedRecHit.h"
0007 #include "DataFormats/Common/interface/Ref.h"
0008 #include "DataFormats/Common/interface/RefVector.h"
0009 
0010 typedef edm::SortedCollection<EcalRecHit> EcalRecHitCollection;
0011 typedef edm::Ref<EcalRecHitCollection> EcalRecHitRef;
0012 typedef edm::RefVector<EcalRecHitCollection> EcalRecHitRefs;
0013 typedef edm::RefProd<EcalRecHitCollection> EcalRecHitsRef;
0014 
0015 typedef EcalRecHitCollection EBRecHitCollection;
0016 typedef EcalRecHitCollection EERecHitCollection;
0017 typedef EcalRecHitCollection ESRecHitCollection;
0018 
0019 typedef edm::SortedCollection<EcalUncalibratedRecHit> EcalUncalibratedRecHitCollection;
0020 typedef edm::Ref<EcalUncalibratedRecHitCollection> EcalUncalibratedRecHitRef;
0021 typedef edm::RefVector<EcalUncalibratedRecHitCollection> EcalUncalibratedRecHitRefs;
0022 typedef edm::RefProd<EcalUncalibratedRecHitCollection> EcalUncalibratedRecHitsRef;
0023 
0024 typedef EcalUncalibratedRecHitCollection EBUncalibratedRecHitCollection;
0025 typedef EcalUncalibratedRecHitCollection EEUncalibratedRecHitCollection;
0026 
0027 #endif