CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Attributes
LumiSummaryRunHeader Class Reference

#include <LumiSummaryRunHeader.h>

Public Types

typedef std::vector< std::string > vstring_t
 

Public Member Functions

unsigned int getHLTIndex (const std::string &name) const
 Get index of given HLT path-name. Returns -1 if not found. More...
 
std::string getHLTName (unsigned int idx) const
 Get HLT name at given position. More...
 
const vstring_tgetHLTNames (vstring_t &hltnames) const
 Get HLT name vector. More...
 
unsigned int getL1Index (const std::string &name) const
 Get index of given L1 trigger-name. Returns -1 if not found. More...
 
std::string getL1Name (unsigned int idx) const
 Get L1 name at given position. More...
 
const vstring_tgetL1Names (vstring_t &l1names) const
 Get L1 name vector. More...
 
bool isProductEqual (LumiSummaryRunHeader const &o) const
 Product compare function. More...
 
 LumiSummaryRunHeader ()
 Default constructor. More...
 
 LumiSummaryRunHeader (vstring_t &l1names, vstring_t &hltnames)
 
void setHLTNames (const vstring_t &hltnames)
 Set HLT name vector. More...
 
void setL1Names (const vstring_t &l1names)
 Set L1 name vector. More...
 
void swapHLTNames (vstring_t &hltnames)
 Swap HLT name vector. More...
 
void swapL1Names (vstring_t &l1names)
 Swap L1 name vector. More...
 
 ~LumiSummaryRunHeader ()
 Destructor. More...
 

Private Attributes

vstring_t m_hltNames
 
vstring_t m_l1Names
 

Detailed Description

LumiSummaryRunHeader contains LumiSummary data which remains valid during the whole run.

  1. Vectors of L1 and HLT trigger / path names. LumiSummary uses integer indices into these two vectors to minimize disk-usage in highly selective skim files.
Author
Matevz Tadel
Date
2011-02-22

Definition at line 21 of file LumiSummaryRunHeader.h.

Member Typedef Documentation

typedef std::vector<std::string> LumiSummaryRunHeader::vstring_t

Definition at line 24 of file LumiSummaryRunHeader.h.

Constructor & Destructor Documentation

LumiSummaryRunHeader::LumiSummaryRunHeader ( )
inline

Default constructor.

Definition at line 29 of file LumiSummaryRunHeader.h.

29 {}
LumiSummaryRunHeader::LumiSummaryRunHeader ( vstring_t l1names,
vstring_t hltnames 
)

Constructor with names. Vectors are swapped so they are empty on return.

Definition at line 4 of file LumiSummaryRunHeader.cc.

References m_hltNames, and m_l1Names.

5 {
6  m_l1Names.swap(l1names);
7  m_hltNames.swap(hltnames);
8 }
LumiSummaryRunHeader::~LumiSummaryRunHeader ( )
inline

Destructor.

Definition at line 36 of file LumiSummaryRunHeader.h.

References isProductEqual(), connectstrParser::o, setHLTNames(), setL1Names(), swapHLTNames(), and swapL1Names().

36 {}

Member Function Documentation

unsigned int LumiSummaryRunHeader::getHLTIndex ( const std::string &  name) const

Get index of given HLT path-name. Returns -1 if not found.

Definition at line 49 of file LumiSummaryRunHeader.cc.

References mps_fire::i, m_hltNames, and findQualityFiles::size.

Referenced by getHLTNames().

50 {
51  const unsigned int size = m_hltNames.size();
52  for (unsigned int i = 0; i < size; ++i)
53  {
54  if (m_hltNames[i] == name) return i;
55  }
56  return -1;
57 }
size
Write out results.
std::string LumiSummaryRunHeader::getHLTName ( unsigned int  idx) const
inline

Get HLT name at given position.

Definition at line 61 of file LumiSummaryRunHeader.h.

References m_hltNames.

const vstring_t& LumiSummaryRunHeader::getHLTNames ( vstring_t hltnames) const
inline

Get HLT name vector.

Definition at line 67 of file LumiSummaryRunHeader.h.

References getHLTIndex(), getL1Index(), m_hltNames, dataset::name, and AlCaHLTBitMon_QueryRunRegistry::string.

67 { return m_hltNames; }
unsigned int LumiSummaryRunHeader::getL1Index ( const std::string &  name) const

Get index of given L1 trigger-name. Returns -1 if not found.

Definition at line 39 of file LumiSummaryRunHeader.cc.

References mps_fire::i, m_l1Names, and findQualityFiles::size.

Referenced by LumiCalculator::endLuminosityBlock(), and getHLTNames().

40 {
41  const unsigned int size = m_l1Names.size();
42  for (unsigned int i = 0; i < size; ++i)
43  {
44  if (m_l1Names[i] == name) return i;
45  }
46  return -1;
47 }
size
Write out results.
std::string LumiSummaryRunHeader::getL1Name ( unsigned int  idx) const
inline

Get L1 name at given position.

Definition at line 58 of file LumiSummaryRunHeader.h.

References m_l1Names.

Referenced by LumiCalculator::endLuminosityBlock().

const vstring_t& LumiSummaryRunHeader::getL1Names ( vstring_t l1names) const
inline

Get L1 name vector.

Definition at line 64 of file LumiSummaryRunHeader.h.

References m_l1Names.

64 { return m_l1Names; }
bool LumiSummaryRunHeader::isProductEqual ( LumiSummaryRunHeader const &  o) const

Product compare function.

Definition at line 10 of file LumiSummaryRunHeader.cc.

References m_hltNames, and m_l1Names.

Referenced by ~LumiSummaryRunHeader().

11 {
12  return m_l1Names == o.m_l1Names && m_hltNames == o.m_hltNames;
13 }
void LumiSummaryRunHeader::setHLTNames ( const vstring_t hltnames)

Set HLT name vector.

Definition at line 22 of file LumiSummaryRunHeader.cc.

References m_hltNames.

Referenced by ~LumiSummaryRunHeader().

23 {
24  m_hltNames.assign(hltnames.begin(), hltnames.end());
25 }
void LumiSummaryRunHeader::setL1Names ( const vstring_t l1names)

Set L1 name vector.

Definition at line 17 of file LumiSummaryRunHeader.cc.

References m_l1Names.

Referenced by ~LumiSummaryRunHeader().

18 {
19  m_l1Names.assign(l1names.begin(), l1names.end());
20 }
void LumiSummaryRunHeader::swapHLTNames ( vstring_t hltnames)

Swap HLT name vector.

Definition at line 32 of file LumiSummaryRunHeader.cc.

References m_hltNames.

Referenced by ~LumiSummaryRunHeader().

33 {
34  m_hltNames.swap(hltnames);
35 }
void LumiSummaryRunHeader::swapL1Names ( vstring_t l1names)

Swap L1 name vector.

Definition at line 27 of file LumiSummaryRunHeader.cc.

References m_l1Names.

Referenced by ~LumiSummaryRunHeader().

28 {
29  m_l1Names.swap(l1names);
30 }

Member Data Documentation

vstring_t LumiSummaryRunHeader::m_hltNames
private
vstring_t LumiSummaryRunHeader::m_l1Names
private