CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
JsonOutputProducer::JsonEventState Struct Reference

Public Member Functions

 JsonEventState ()
 
 JsonEventState (State _s, int _m, int _l, int _t)
 
std::string serialise (size_t _indent=0) const
 

Public Attributes

int l
 
int m
 
State s
 
int t
 

Detailed Description

Definition at line 617 of file hltDiff.cc.

Constructor & Destructor Documentation

JsonOutputProducer::JsonEventState::JsonEventState ( )
inline
JsonOutputProducer::JsonEventState::JsonEventState ( State  _s,
int  _m,
int  _l,
int  _t 
)
inline

Member Function Documentation

std::string JsonOutputProducer::JsonEventState::serialise ( size_t  _indent = 0) const
inline

Definition at line 623 of file hltDiff.cc.

References L1Trigger_dataformats::json, and Pass.

Referenced by JsonOutputProducer::JsonTriggerEventState::serialise().

623  {
624  std::ostringstream json;
625  json << key_int("s", int(s)); // line
626  // No more information needed if the state is 'accepted'
627  if (s == State::Pass)
628  return json.str();
629  json << ',';
630  json << key_int("m", m) << ',';
631  json << key_int("l", l) << ',';
632  json << key_int("t", t);
633 
634  return json.str();
635  }
Definition: hltDiff.cc:244
static std::string key_int(const std::string &_key, int _int, const std::string &_delim="")
Definition: hltDiff.cc:456

Member Data Documentation

int JsonOutputProducer::JsonEventState::l
int JsonOutputProducer::JsonEventState::m

Definition at line 619 of file hltDiff.cc.

State JsonOutputProducer::JsonEventState::s
int JsonOutputProducer::JsonEventState::t

Definition at line 621 of file hltDiff.cc.