/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
OnlineDB/CSCCondDB/src/CSCAFEBAnalyzer.cc
42 строки
1 KB
Sunanda
Handle compilation warnings in OnlineDB/CSCCondDB
12 июл 2022, 03:32
12 июл 2022, 03:32
2d36d97
Код
Авторство
О чём код?
#include <iostream> #include <vector> #include "FWCore/Framework/interface/Event.h" #include "DataFormats/Common/interface/Handle.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/Framework/interface/EventSetup.h" #include "FWCore/Framework/interface/ESHandle.h" #include "OnlineDB/CSCCondDB/interface/CSCAFEBAnalyzer.h" CSCAFEBAnalyzer::CSCAFEBAnalyzer(edm::ParameterSet const& conf) : testname(conf.getParameter<std::string>("TestName")), CSCSrc_(conf.getParameter<edm::InputTag>("CSCSrc")), w_token(consumes<CSCWireDigiCollection>(CSCSrc_)) { /// If your module takes parameters, here is where you would define /// their names and types, and access them to initialize internal /// variables. Example as follows: if (testname == "AFEBThresholdScan") analysisthr_.setup(conf.getParameter<std::string>("HistogramFile")); if (testname == "AFEBConnectivity") analysiscnt_.setup(conf.getParameter<std::string>("HistogramFile")); /// get labels for input tags } void CSCAFEBAnalyzer::analyze(edm::Event const& e, edm::EventSetup const& iSetup) { /// For CSC unpacker const edm::Handle<CSCWireDigiCollection>& wire_digis = e.getHandle(w_token); if (testname == "AFEBThresholdScan") analysisthr_.analyze(*wire_digis); if (testname == "AFEBConnectivity") analysiscnt_.analyze(*wire_digis); } void CSCAFEBAnalyzer::endJob() { if (testname == "AFEBThresholdScan") analysisthr_.done(); if (testname == "AFEBConnectivity") analysiscnt_.done(); }