Go to the documentation of this file.00001 #ifndef GTPSBTEXTTODIGI_H
00002 #define GTPSBTEXTTODIGI_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include <memory>
00027 #include <fstream>
00028 #include "FWCore/Framework/interface/Frameworkfwd.h"
00029 #include "FWCore/Framework/interface/EDProducer.h"
00030 #include "FWCore/Framework/interface/Event.h"
00031 #include "FWCore/Framework/interface/MakerMacros.h"
00032 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00033
00034 class GtPsbTextToDigi : public edm::EDProducer {
00035 public:
00036 explicit GtPsbTextToDigi(const edm::ParameterSet&);
00037 ~GtPsbTextToDigi();
00038
00039 private:
00040 virtual void produce(edm::Event&, const edm::EventSetup&);
00041 virtual void endJob();
00042
00043 private:
00045 void putEmptyDigi(edm::Event&);
00046
00048 int m_fileEventOffset;
00049
00051 std::string m_textFileName;
00052
00054 int m_nevt;
00055
00057 std::ifstream m_file[4];
00058
00060 int m_bc0[4];
00061 };
00062
00063 #endif