CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
egHLT::ComCodes Class Reference

#include <EgHLTComCodes.h>

Public Member Functions

 ComCodes ()=default
 
 ComCodes (const ComCodes &rhs)=default
 
int getCode (const char *descript) const
 
void getCodeName (int code, std::string &id) const
 
void setCode (const char *descript, int code)
 
void sort ()
 
 ~ComCodes ()=default
 

Static Public Member Functions

static bool keyComp (const std::pair< std::string, int > &lhs, const std::pair< std::string, int > &rhs)
 

Private Attributes

std::vector< std::pair< std::string, int > > _codeDefs
 

Detailed Description

Definition at line 12 of file EgHLTComCodes.h.

Constructor & Destructor Documentation

egHLT::ComCodes::ComCodes ( )
default
egHLT::ComCodes::ComCodes ( const ComCodes rhs)
default
egHLT::ComCodes::~ComCodes ( )
default

Member Function Documentation

int ComCodes::getCode ( const char *  descript) const

Definition at line 20 of file EgHLTComCodes.cc.

References _codeDefs, plotBeamSpotDB::first, runEdmFileComparison::found, and mps_fire::i.

Referenced by egHLT::EgCutCodes::getCode().

21 {
22  //first copy the character string to a local array so we can manipulate it
23  char localDescript[256];
24  strcpy(localDescript,descript);
25 
26  int code = 0x0000;
27  char* codeKey = strtok(localDescript,":");
28  // std::map<std::string,int> ::const_iterator mapIt;
29  while(codeKey!=nullptr){
30  bool found=false;
31 
32  for(size_t i=0;i<_codeDefs.size() && !found;i++){
33  if(_codeDefs[i].first==codeKey){
34  found=true;
35  code |= _codeDefs[i].second;
36 
37  }
38  }
39 
40  if(!found) edm::LogWarning("EgHLTComCodes") <<"ComCodes::getCode : Error, Key "<<codeKey<<" not found (likely mistyped, practical upshot is the selection is not what you think it is)";//<<std::endl;
41  codeKey = strtok(nullptr,":"); //getting new substring
42 
43  }
44  return code;
45 }
std::vector< std::pair< std::string, int > > _codeDefs
Definition: EgHLTComCodes.h:15
void ComCodes::getCodeName ( int  code,
std::string &  id 
) const

Definition at line 52 of file EgHLTComCodes.cc.

References _codeDefs, and relativeConstraints::empty.

Referenced by egHLT::EgCutCodes::getCodeName().

53 {
54  id.clear();
55  for(auto const & _codeDef : _codeDefs){
56  if((code&_codeDef.second)==_codeDef.second){
57  if(!id.empty()) id+=":";//seperating entries by a ':'
58  id+=_codeDef.first;
59  }
60 
61  }
62 
63 }
std::vector< std::pair< std::string, int > > _codeDefs
Definition: EgHLTComCodes.h:15
bool ComCodes::keyComp ( const std::pair< std::string, int > &  lhs,
const std::pair< std::string, int > &  rhs 
)
static

Definition at line 47 of file EgHLTComCodes.cc.

Referenced by sort().

48 {
49  return lhs.first < rhs.first;
50 }
void ComCodes::setCode ( const char *  descript,
int  code 
)

Definition at line 7 of file EgHLTComCodes.cc.

References _codeDefs, plotBeamSpotDB::first, runEdmFileComparison::found, and mps_fire::i.

Referenced by egHLT::EgCutCodes::setCodes_().

8 {
9  bool found=false;
10  for(size_t i=0;i<_codeDefs.size() && !found;i++){
11  if(_codeDefs[i].first==descript) found=true;
12  }
13  if(!found) _codeDefs.emplace_back(descript,code);
14 
15  //_codeDefs[descript] = code;
16 }
std::vector< std::pair< std::string, int > > _codeDefs
Definition: EgHLTComCodes.h:15
void egHLT::ComCodes::sort ( )
inline

Definition at line 31 of file EgHLTComCodes.h.

References keyComp().

Referenced by egHLT::EgCutCodes::setCodes_().

31 {std::sort(_codeDefs.begin(),_codeDefs.end(),keyComp);}
std::vector< std::pair< std::string, int > > _codeDefs
Definition: EgHLTComCodes.h:15
static bool keyComp(const std::pair< std::string, int > &lhs, const std::pair< std::string, int > &rhs)

Member Data Documentation

std::vector<std::pair<std::string,int> > egHLT::ComCodes::_codeDefs
private

Definition at line 15 of file EgHLTComCodes.h.

Referenced by getCode(), getCodeName(), and setCode().