CMS 3D CMS Logo

LHCInfoProducer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: PhysicsTools/NanoAOD
4 // Class: LHCInfoProducer
5 //
11 //
12 // Original Author: Justin Williams
13 // Created: 05 Jul 2019 14:06:12 GMT
14 //
15 //
16 
17 // System include files
18 #include <memory>
19 #include <map>
20 #include <string>
21 #include <vector>
22 #include <iostream>
23 
24 // user include files
27 
30 
36 
39 
41 
45 
47 
50 
51 class LHCInfoProducer : public edm::global::EDProducer<edm::BeginLuminosityBlockProducer> {
52 public:
54  produces<nanoaod::MergeableCounterTable, edm::Transition::BeginLuminosityBlock>();
55  }
56  ~LHCInfoProducer() override {}
57 
58  // ------------ method called to produce the data ------------
59  void produce(edm::StreamID id, edm::Event& iEvent, const edm::EventSetup& iSetup) const override {}
60 
61  void globalBeginLuminosityBlockProduce(edm::LuminosityBlock& iLumi, edm::EventSetup const& iSetup) const override {
62  const auto& info = iSetup.getData(lhcinfoToken_);
63  auto out = std::make_unique<nanoaod::MergeableCounterTable>();
64  out->addFloat("crossingAngle", "LHC crossing angle", info.crossingAngle());
65  out->addFloat("betaStar", "LHC beta star", info.betaStar());
66  out->addFloat("energy", "LHC beam energy", info.energy());
67  iLumi.put(std::move(out));
68  }
69 
70  // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
71  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
73  desc.setUnknown();
74  descriptions.addDefault(desc);
75  }
77 };
78 
static const TGPicture * info(bool iBackgroundIsBlack)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
int iEvent
Definition: GenABIO.cc:224
void addDefault(ParameterSetDescription const &psetDescription)
void produce(edm::StreamID id, edm::Event &iEvent, const edm::EventSetup &iSetup) const override
void put(std::unique_ptr< PROD > product)
Put a new product.
LHCInfoProducer(edm::ParameterSet const &)
Transition
Definition: Transition.h:12
bool getData(T &iHolder) const
Definition: EventSetup.h:122
edm::ESGetToken< LHCInfo, LHCInfoRcd > lhcinfoToken_
HLT enums.
~LHCInfoProducer() override
def move(src, dest)
Definition: eostools.py:511
void globalBeginLuminosityBlockProduce(edm::LuminosityBlock &iLumi, edm::EventSetup const &iSetup) const override