CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes
TextToRaw Class Reference

#include <L1Triggr/TextToDigi/src/TextToRaw.cc>

Inheritance diagram for TextToRaw:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 TextToRaw (const edm::ParameterSet &)
 
 ~TextToRaw () override
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducer () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void beginJob () override
 
void endJob () override
 
void produce (edm::Event &, const edm::EventSetup &) override
 
void putEmptyDigi (edm::Event &)
 Append empty digi collection. More...
 

Private Attributes

char data_ [EVT_MAX_SIZE]
 
int fedId_
 
std::ifstream file_
 
int fileEventOffset_
 
std::string filename_
 
int nevt_
 

Static Private Attributes

static const unsigned EVT_MAX_SIZE = 8192
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
typedef ProductRegistryHelper::TypeLabelList TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Description: Convert ASCII dump of a raw event to FEDRawData format for unpacking

Implementation: Input format is a 32 bit hex string per line (LSW first). Events separated with blank line.

Definition at line 41 of file TextToRaw.h.

Constructor & Destructor Documentation

TextToRaw::TextToRaw ( const edm::ParameterSet iConfig)
explicit

Definition at line 28 of file TextToRaw.cc.

References filename_.

29  : fedId_(iConfig.getUntrackedParameter<int>("fedId", 745)),
30  filename_(iConfig.getUntrackedParameter<std::string>("filename",
31  "slinkOutput.txt")),
33  iConfig.getUntrackedParameter<int>("FileEventOffset", 0)),
34  nevt_(0) {
35  edm::LogInfo("TextToDigi")
36  << "Reading ASCII dump from " << filename_ << std::endl;
37 
38  // register the products
39  produces<FEDRawDataCollection>();
40 }
T getUntrackedParameter(std::string const &, T const &) const
int fileEventOffset_
Definition: TextToRaw.h:63
int nevt_
Definition: TextToRaw.h:64
std::string filename_
Definition: TextToRaw.h:56
int fedId_
Definition: TextToRaw.h:53
TextToRaw::~TextToRaw ( )
override

Definition at line 42 of file TextToRaw.cc.

42  {
43 
44  // do anything here that needs to be done at desctruction time
45  // (e.g. close files, deallocate resources etc.)
46 }

Member Function Documentation

void TextToRaw::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDProducer.

Definition at line 140 of file TextToRaw.cc.

References file_, filename_, and recoMuon::in.

140  {
141  // open VME file
142  file_.open(filename_.c_str(), std::ios::in);
143  if (!file_.good()) {
144  edm::LogInfo("TextToDigi")
145  << "Failed to open ASCII file " << filename_ << std::endl;
146  }
147 }
std::ifstream file_
Definition: TextToRaw.h:57
std::string filename_
Definition: TextToRaw.h:56
void TextToRaw::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDProducer.

Definition at line 151 of file TextToRaw.cc.

References file_.

151 { file_.close(); }
std::ifstream file_
Definition: TextToRaw.h:57
void TextToRaw::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 57 of file TextToRaw.cc.

References funct::abs(), EnergyCorrector::c, edmIntegrityCheck::d, FEDRawData::data(), data_, EVT_MAX_SIZE, Exception, fedId_, file_, fileEventOffset_, mps_fire::i, ntuplemaker::iline, mps_splice::line, eostools::move(), nevt_, edm::Event::put(), putEmptyDigi(), FEDRawData::resize(), and AlCaHLTBitMon_QueryRunRegistry::string.

57  {
58  using namespace edm;
59 
60  // Skip event if required
61  if (nevt_ < fileEventOffset_) {
62  putEmptyDigi(iEvent);
63  nevt_++;
64  return;
65  } else if (nevt_ == 0 && fileEventOffset_ < 0) {
67  // skip first fileEventOffset input crossings
68  for (unsigned i = 0; i < (unsigned)abs(fileEventOffset_); i++) {
69  unsigned iline = 0;
70  while (getline(file_, line) && !line.empty()) {
71  iline++;
72  if (iline * 4 >= EVT_MAX_SIZE)
73  throw cms::Exception("TextToRawEventSizeOverflow")
74  << "TextToRaw::produce() : "
75  << " read too many lines (" << iline << ": " << line << ")"
76  << ", maximum event size is " << EVT_MAX_SIZE << std::endl;
77  }
78  }
79  }
80 
81  nevt_++;
82 
83  // read file
85  unsigned i = 0; // count 32-bit words
86 
87  // while not encountering dumb errors
88  while (getline(file_, line) && !line.empty()) {
89 
90  // bail if we reached the EVT_MAX_SIZE
91  if (i * 4 >= EVT_MAX_SIZE) {
92  throw cms::Exception("TextToRaw")
93  << "Read too many lines from file. Maximum event size is "
94  << EVT_MAX_SIZE << " lines" << std::endl;
95  }
96 
97  // convert string to int
98  std::istringstream iss(line);
99  unsigned long d;
100  iss >> std::hex >> d;
101 
102  // copy data
103  for (int j = 0; j < 4; j++) {
104  if ((i * 4 + j) < EVT_MAX_SIZE) {
105  char c = (d >> (8 * j)) & 0xff;
106  data_[i * 4 + j] = c;
107  }
108  }
109 
110  ++i;
111 
112  // bail if we reached the EVT_MAX_SIZE
113  if (i >= EVT_MAX_SIZE) {
114  throw cms::Exception("TextToRaw")
115  << "Read too many lines from file. Maximum event size is "
116  << EVT_MAX_SIZE << " lines" << std::endl;
117  }
118  }
119 
120  unsigned evtSize = i * 4;
121 
122  // create the collection
123  std::unique_ptr<FEDRawDataCollection> rawColl(new FEDRawDataCollection());
124  // retrieve the target buffer
125  FEDRawData &feddata = rawColl->FEDData(fedId_);
126  // Allocate space for header+trailer+payload
127  feddata.resize(evtSize);
128 
129  // fill FEDRawData object
130  for (unsigned i = 0; i < evtSize; ++i) {
131  feddata.data()[i] = data_[i];
132  }
133 
134  // put the collection in the event
135  iEvent.put(std::move(rawColl));
136 }
std::ifstream file_
Definition: TextToRaw.h:57
void putEmptyDigi(edm::Event &)
Append empty digi collection.
Definition: TextToRaw.cc:49
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
int fileEventOffset_
Definition: TextToRaw.h:63
int nevt_
Definition: TextToRaw.h:64
char data_[EVT_MAX_SIZE]
Definition: TextToRaw.h:61
static const unsigned EVT_MAX_SIZE
Definition: TextToRaw.h:60
void resize(size_t newsize)
Definition: FEDRawData.cc:32
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int fedId_
Definition: TextToRaw.h:53
HLT enums.
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:28
def move(src, dest)
Definition: eostools.py:511
void TextToRaw::putEmptyDigi ( edm::Event iEvent)
private

Append empty digi collection.

Definition at line 49 of file TextToRaw.cc.

References eostools::move(), and edm::Event::put().

Referenced by produce().

49  {
50  std::unique_ptr<FEDRawDataCollection> rawColl(new FEDRawDataCollection());
51  // FEDRawData& feddata=rawColl->FEDData(fedId_);
52  // feddata.data()[0] = 0;
53  iEvent.put(std::move(rawColl));
54 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

char TextToRaw::data_[EVT_MAX_SIZE]
private

Definition at line 61 of file TextToRaw.h.

Referenced by produce().

const unsigned TextToRaw::EVT_MAX_SIZE = 8192
staticprivate

Definition at line 60 of file TextToRaw.h.

Referenced by produce().

int TextToRaw::fedId_
private

Definition at line 53 of file TextToRaw.h.

Referenced by produce().

std::ifstream TextToRaw::file_
private

Definition at line 57 of file TextToRaw.h.

Referenced by beginJob(), endJob(), and produce().

int TextToRaw::fileEventOffset_
private

Definition at line 63 of file TextToRaw.h.

Referenced by produce().

std::string TextToRaw::filename_
private

Definition at line 56 of file TextToRaw.h.

Referenced by beginJob(), and TextToRaw().

int TextToRaw::nevt_
private

Definition at line 64 of file TextToRaw.h.

Referenced by produce().