Go to the documentation of this file.00001 #ifndef RCTTEXTTORCTDIGI_H
00002 #define RCTTEXTTORCTDIGI_H
00003
00004
00005
00006
00007
00008
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include <memory>
00024
00025
00026 #include "FWCore/Framework/interface/Frameworkfwd.h"
00027 #include "FWCore/Framework/interface/EDProducer.h"
00028
00029 #include "FWCore/Framework/interface/Event.h"
00030 #include "FWCore/Framework/interface/MakerMacros.h"
00031
00032 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00033
00034
00035 #include "DataFormats/L1CaloTrigger/interface/L1CaloCollections.h"
00036
00037 #include <iostream>
00038 #include <fstream>
00039
00040 class RctTextToRctDigi : public edm::EDProducer {
00041 public:
00042 explicit RctTextToRctDigi(const edm::ParameterSet&);
00043 ~RctTextToRctDigi();
00044
00045 private:
00046 virtual void produce(edm::Event&, const edm::EventSetup&);
00047
00049 void putEmptyDigi(edm::Event&);
00050
00052 void bxSynchro(int &,int);
00053
00055 std::string m_textFileName;
00056
00058 int m_fileEventOffset;
00059
00061 int m_nevt;
00062
00064 std::ifstream m_file[18];
00065
00066 };
00067
00068 #endif