/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/CSCObjects/test/stubs/CSCReadoutMapTest.cc
97 строк
3 KB
Christopher Jones
Modernize modules in CondFormats/CSCObjects
30 ноя 2021, 20:11
30 ноя 2021, 20:11
c78c0d6
Код
Авторство
О чём код?
#include <stdexcept> #include <string> #include <iostream> #include <map> #include <vector> #include "FWCore/Framework/interface/global/EDAnalyzer.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/Framework/interface/MakerMacros.h" #include "FWCore/Framework/interface/EventSetup.h" #include "FWCore/Utilities/interface/ESGetToken.h" #include "FWCore/MessageLogger/interface/MessageLogger.h" #include "CondFormats/CSCObjects/interface/CSCCrateMap.h" #include "CondFormats/DataRecord/interface/CSCCrateMapRcd.h" #include "CondFormats/CSCObjects/interface/CSCMapItem.h" #include "DataFormats/MuonDetId/interface/CSCDetId.h" using namespace std; namespace edmtest { class CSCReadoutMapTest : public edm::global::EDAnalyzer<> { public: explicit CSCReadoutMapTest(edm::ParameterSet const& p) : token_{esConsumes()} {} ~CSCReadoutMapTest() override {} void analyze(edm::StreamID, const edm::Event& e, const edm::EventSetup& c) const override; private: edm::ESGetToken<CSCCrateMap, CSCCrateMapRcd> token_; }; void CSCReadoutMapTest::analyze(edm::StreamID, const edm::Event& e, const edm::EventSetup& context) const { using namespace edm::eventsetup; edm::LogSystem log("CSCCrateMap"); log << "+===================+" << std::endl; log << "| CSCReadoutMapTest |" << std::endl; log << "+===================+" << std::endl; log << "run " << e.id().run() << std::endl; log << "event " << e.id().event() << std::endl; const CSCCrateMap* pcrate = &context.getData(token_); const int ncrates = 60; const int ndmb = 10; const int missing = 6; int count = 0; int countall = 0; for (int jc = 0; jc != ncrates; ++jc) { for (int jd = 0; jd != ndmb; ++jd) { if (jd + 1 == missing) continue; // there's no dmb=6 int jcfeb = 0; // just set something ++countall; // The iterations here cover more than available chambers so need // to skip non-existing ones int jdmb = jd + 1; int jcrate = jc + 1; int cscid = jdmb; if (jdmb >= 6) --cscid; int key = jcrate * 10 + cscid; CSCCrateMap::CSCMap::const_iterator it = (pcrate->crate_map).find(key); if (it != (pcrate->crate_map).end()) { ++count; CSCDetId id = pcrate->detId(jcrate, jdmb, jcfeb); // *** TEST THE detId BUILDER FOR CHAMBER *** log << "Built CSCDetId for chamber # " << count << " id= " << id << " count " << countall << std::endl; if (id.station() == 1 && id.ring() == 1) { jcfeb = 4; // Split off ME1a CSCDetId id = pcrate->detId(jcrate, jdmb, jcfeb); // *** TEST THE detId BUILDER FOR CHAMBER ME1a *** log << "Built CSCDetId for ME1a, id= " << id << " count " << countall << std::endl; } for (int il = 1; il != 7; ++il) { CSCDetId id = pcrate->detId(jcrate, jdmb, jcfeb, il); // *** TEST THE detId BUILDER FOR LAYER *** log << "Built CSCDetId for layer # " << il << " id= " << id << std::endl; } } else { log << "no chamber at count = " << countall << std::endl; } } } log << "+==========================+" << std::endl; log << "| End of CSCReadoutMapTest |" << std::endl; log << "+==========================+" << std::endl; } // namespace DEFINE_FWK_MODULE(CSCReadoutMapTest); } // namespace edmtest