Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:18:43

0001 #include "DataFormats/TrackerRecHit2D/interface/SiStripRecHit2DCollection.h"
0002 #include "DataFormats/TrackerRecHit2D/interface/SiStripMatchedRecHit2DCollection.h"
0003 #include "DataFormats/TrajectorySeed/interface/TrajectorySeed.h"
0004 #include "DataFormats/TrackReco/interface/Track.h"
0005 #include "HLTrigger/special/plugins/HLTCountNumberOfObject.h"
0006 
0007 // declare these template instantiations as framework plugins
0008 #include "FWCore/Framework/interface/MakerMacros.h"
0009 
0010 using HLTCountNumberOfSingleRecHit = HLTCountNumberOfObject<SiStripRecHit2DCollection>;
0011 DEFINE_FWK_MODULE(HLTCountNumberOfSingleRecHit);
0012 
0013 using HLTCountNumberOfMatchedRecHit = HLTCountNumberOfObject<SiStripMatchedRecHit2DCollection>;
0014 DEFINE_FWK_MODULE(HLTCountNumberOfMatchedRecHit);
0015 
0016 using HLTCountNumberOfTrajectorySeed = HLTCountNumberOfObject<edm::View<TrajectorySeed>>;
0017 DEFINE_FWK_MODULE(HLTCountNumberOfTrajectorySeed);
0018 
0019 using HLTCountNumberOfTrack = HLTCountNumberOfObject<edm::View<reco::Track>>;
0020 DEFINE_FWK_MODULE(HLTCountNumberOfTrack);