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 668 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 674 of file hltDiff.cc.

References edmPickEvents::json, and Pass.

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

674  {
675  std::ostringstream json;
676  json << key_int("s", int(s)); // line
677  // No more information needed if the state is 'accepted'
678  if (s == State::Pass) return json.str();
679  json << ',';
680  json << key_int("m", m) << ',';
681  json << key_int("l", l) << ',';
682  json << key_int("t", t);
683 
684  return json.str();
685  }
Definition: hltDiff.cc:290
static std::string key_int(const std::string &_key, int _int, const std::string &_delim="")
Definition: hltDiff.cc:511

Member Data Documentation

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

Definition at line 670 of file hltDiff.cc.

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

Definition at line 672 of file hltDiff.cc.