Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:24

0001 // -*- C++ -*-
0002 //
0003 // Package:     JetMETCorrections/Modules
0004 // Class  :     JetCorrectorProducers
0005 //
0006 // Implementation:
0007 //     [Notes on implementation]
0008 //
0009 // Original Author:  Christopher Jones
0010 //         Created:  Sun, 31 Aug 2014 20:58:29 GMT
0011 //
0012 
0013 // system include files
0014 
0015 // user include files
0016 #include "FWCore/Framework/interface/MakerMacros.h"
0017 #include "JetCorrectorProducer.h"
0018 #include "JetMETCorrections/Algorithms/interface/LXXXCorrectorImpl.h"
0019 #include "JetMETCorrections/Algorithms/interface/L1OffsetCorrectorImpl.h"
0020 #include "JetMETCorrections/Algorithms/interface/L1JPTOffsetCorrectorImpl.h"
0021 #include "JetMETCorrections/Algorithms/interface/L1FastjetCorrectorImpl.h"
0022 #include "JetMETCorrections/Algorithms/interface/L6SLBCorrectorImpl.h"
0023 
0024 typedef JetCorrectorProducer<LXXXCorrectorImpl> LXXXCorrectorProducer;
0025 DEFINE_FWK_MODULE(LXXXCorrectorProducer);
0026 
0027 typedef JetCorrectorProducer<L1OffsetCorrectorImpl> L1OffsetCorrectorProducer;
0028 DEFINE_FWK_MODULE(L1OffsetCorrectorProducer);
0029 
0030 typedef JetCorrectorProducer<L1JPTOffsetCorrectorImpl> L1JPTOffsetCorrectorProducer;
0031 DEFINE_FWK_MODULE(L1JPTOffsetCorrectorProducer);
0032 
0033 typedef JetCorrectorProducer<L1FastjetCorrectorImpl> L1FastjetCorrectorProducer;
0034 DEFINE_FWK_MODULE(L1FastjetCorrectorProducer);
0035 
0036 typedef JetCorrectorProducer<L6SLBCorrectorImpl> L6SLBCorrectorProducer;
0037 DEFINE_FWK_MODULE(L6SLBCorrectorProducer);