File indexing completed on 2024-04-06 12:10:40
0001 #ifndef L1ExtraFromDigis_L1GctInternJetProducer_h
0002 #define L1ExtraFromDigis_L1GctInternJetProducer_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #include "FWCore/Framework/interface/global/EDProducer.h"
0018 #include "FWCore/Framework/interface/Event.h"
0019 #include "FWCore/Framework/interface/EventSetup.h"
0020 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0021 #include "FWCore/Utilities/interface/InputTag.h"
0022 #include "FWCore/Utilities/interface/ESGetToken.h"
0023
0024 #include "DataFormats/L1Trigger/interface/L1JetParticle.h"
0025 #include "DataFormats/L1Trigger/interface/L1JetParticleFwd.h"
0026 #include "CondFormats/L1TObjects/interface/L1CaloGeometry.h"
0027 #include "CondFormats/DataRecord/interface/L1CaloGeometryRecord.h"
0028 #include "CondFormats/L1TObjects/interface/L1CaloEtScale.h"
0029 #include "CondFormats/DataRecord/interface/L1JetEtScaleRcd.h"
0030
0031
0032 class L1CaloGeometry;
0033
0034 class L1GctInternJetProducer : public edm::global::EDProducer<> {
0035 public:
0036 explicit L1GctInternJetProducer(const edm::ParameterSet&);
0037
0038 private:
0039 void produce(edm::StreamID, edm::Event&, const edm::EventSetup&) const override;
0040
0041 edm::InputTag internalJetSource_;
0042 edm::ESGetToken<L1CaloGeometry, L1CaloGeometryRecord> caloGeomToken_;
0043 edm::ESGetToken<L1CaloEtScale, L1JetEtScaleRcd> jetScaleToken_;
0044 bool centralBxOnly_;
0045 };
0046
0047 #endif