CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes
pat::PATTriggerProducer::ModuleLabelToPathAndFlags Class Reference

Classes

struct  PathAndFlags
 

Public Member Functions

void clear ()
 
void init (const HLTConfigProvider &)
 
const std::vector< PathAndFlags > & operator[] (const std::string &filter) const
 

Private Member Functions

void insert (const std::string &filter, const std::string &path, unsigned int pathIndex, bool lastFilter, bool l3Filter)
 

Private Attributes

const std::vector< PathAndFlagsempty_
 
std::map< std::string, std::vector< PathAndFlags > > map_
 

Detailed Description

Definition at line 126 of file PATTriggerProducer.h.

Member Function Documentation

void pat::PATTriggerProducer::ModuleLabelToPathAndFlags::clear ( void  )
inline

Definition at line 137 of file PATTriggerProducer.h.

References map_.

137 { map_.clear(); }
std::map< std::string, std::vector< PathAndFlags > > map_
void PATTriggerProducer::ModuleLabelToPathAndFlags::init ( const HLTConfigProvider hltConfig)

Definition at line 1041 of file PATTriggerProducer.cc.

References hitfit::clear(), DEFINE_FWK_MODULE, edm::eventsetup::heterocontainer::insert(), HLTConfigProvider::moduleEDMType(), HLTConfigProvider::moduleLabels(), HLTConfigProvider::moduleType(), HLTConfigProvider::saveTags(), AlCaHLTBitMon_QueryRunRegistry::string, and HLTConfigProvider::triggerNames().

Referenced by pat::PATTriggerProducer::beginRun().

1041  {
1042  clear();
1043  const std::vector<std::string> & pathNames = hltConfig.triggerNames();
1044  unsigned int sizePaths = pathNames.size();
1045  for ( unsigned int indexPath = 0; indexPath < sizePaths; ++indexPath ) {
1046  const std::string & namePath = pathNames[indexPath];
1047 
1048  const std::vector<std::string> & nameModules = hltConfig.moduleLabels(indexPath);
1049  unsigned int sizeModulesPath = nameModules.size();
1050  bool lastFilter = true;
1051  unsigned int iM = sizeModulesPath;
1052  while (iM > 0) {
1053  const std::string & nameFilter = nameModules[--iM];
1054  if (hltConfig.moduleEDMType(nameFilter) != "EDFilter") continue;
1055  if (hltConfig.moduleType(nameFilter) == "HLTBool") continue;
1056  bool saveTags = hltConfig.saveTags(nameFilter);
1057  insert( nameFilter, namePath, indexPath, lastFilter, saveTags );
1058  if (saveTags) lastFilter = false; // FIXME: rather always?
1059  }
1060  }
1061 }
bool saveTags(const std::string &module) const
Is module an L3 filter (ie, tracked saveTags=true)
const std::string moduleType(const std::string &module) const
C++ class name of module.
const std::vector< std::string > & triggerNames() const
names of trigger paths
void insert(const std::string &filter, const std::string &path, unsigned int pathIndex, bool lastFilter, bool l3Filter)
const std::string moduleEDMType(const std::string &module) const
C++ base class name of module.
const std::vector< std::string > & moduleLabels(unsigned int trigger) const
label(s) of module(s) on a trigger path
void pat::PATTriggerProducer::ModuleLabelToPathAndFlags::insert ( const std::string &  filter,
const std::string &  path,
unsigned int  pathIndex,
bool  lastFilter,
bool  l3Filter 
)
inlineprivate

Definition at line 143 of file PATTriggerProducer.h.

References ALCARECOTkAlBeamHalo_cff::filter, map_, and pat::PATTriggerProducer::ModuleLabelToPathAndFlags::PathAndFlags::PathAndFlags().

143  {
144  map_[filter].push_back(PathAndFlags(path, pathIndex, lastFilter, l3Filter));
145  }
std::map< std::string, std::vector< PathAndFlags > > map_
const std::vector<PathAndFlags>& pat::PATTriggerProducer::ModuleLabelToPathAndFlags::operator[] ( const std::string &  filter) const
inline

Definition at line 138 of file PATTriggerProducer.h.

References empty_, and map_.

138  {
139  std::map<std::string,std::vector<PathAndFlags> >::const_iterator it = map_.find(filter);
140  return (it == map_.end() ? empty_ : it->second);
141  }
std::map< std::string, std::vector< PathAndFlags > > map_

Member Data Documentation

const std::vector<PathAndFlags> pat::PATTriggerProducer::ModuleLabelToPathAndFlags::empty_
private

Definition at line 147 of file PATTriggerProducer.h.

Referenced by operator[]().

std::map<std::string,std::vector<PathAndFlags> > pat::PATTriggerProducer::ModuleLabelToPathAndFlags::map_
private

Definition at line 146 of file PATTriggerProducer.h.

Referenced by clear(), insert(), and operator[]().