/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
L1Trigger/TextToDigi/plugins/SourceCardTextToRctDigi.h
71 строка
2 KB
Christopher Jones
Moved modules in L1Trigger/TextToDigi to be thread friendly
05 окт 2022, 21:11
05 окт 2022, 21:11
4b0f639
Код
Авторство
О чём код?
#ifndef SOURCECARDTEXTTORCTDIGI_H #define SOURCECARDTEXTTORCTDIGI_H // -*- C++ -*- // // Package: SourceCardTextToRctDigi // Class: SourceCardTextToRctDigi // /**\class SourceCardTextToRctDigi SourceCardTextToRctDigi.h L1Trigger/TextToDigi/src/SourceCardTextToRctDigi.h Description: Input text file to be loaded into the source cards and output RCT digis for pattern tests. Implementation: <Notes on implementation> */ // // Original Author: Alex Tapper // Created: Fri Mar 9 19:11:51 CET 2007 // // // system include files #include <memory> // user include files #include "FWCore/Framework/interface/one/EDProducer.h" #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/Framework/interface/MakerMacros.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" // RCT data includes #include "DataFormats/L1CaloTrigger/interface/L1CaloCollections.h" #include "L1Trigger/TextToDigi/interface/SourceCardRouting.h" #include <fstream> #include <iostream> class SourceCardTextToRctDigi : public edm::one::EDProducer<> { public: explicit SourceCardTextToRctDigi(const edm::ParameterSet &); ~SourceCardTextToRctDigi() override; private: void produce(edm::Event &, const edm::EventSetup &) override; /// Create empty digi collection void putEmptyDigi(edm::Event &); /// Name out input file std::string m_textFileName; /// Number of events to skip at the start of the file int m_fileEventOffset; /// Event counter int m_nevt; /// file handle std::ifstream m_file; /// source card router SourceCardRouting m_scRouting; }; #endif