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 121 of file PATTriggerProducer.h.

Member Function Documentation

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

Definition at line 133 of file PATTriggerProducer.h.

References map_.

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

Definition at line 1191 of file PATTriggerProducer.cc.

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

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

1191  {
1192  clear();
1193  const std::vector<std::string>& pathNames = hltConfig.triggerNames();
1194  unsigned int sizePaths = pathNames.size();
1195  for (unsigned int indexPath = 0; indexPath < sizePaths; ++indexPath) {
1196  const std::string& namePath = pathNames[indexPath];
1197 
1198  const std::vector<std::string>& nameModules = hltConfig.moduleLabels(indexPath);
1199  unsigned int sizeModulesPath = nameModules.size();
1200  bool lastFilter = true;
1201  unsigned int iM = sizeModulesPath;
1202  while (iM > 0) {
1203  const std::string& nameFilter = nameModules[--iM];
1204  if (hltConfig.moduleEDMType(nameFilter) != "EDFilter")
1205  continue;
1206  if (hltConfig.moduleType(nameFilter) == "HLTBool")
1207  continue;
1208  bool saveTags = hltConfig.saveTags(nameFilter);
1209  insert(nameFilter, namePath, indexPath, lastFilter, saveTags);
1210  if (saveTags)
1211  lastFilter = false; // FIXME: rather always?
1212  }
1213  }
1214 }
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
const std::vector<PathAndFlags>& pat::PATTriggerProducer::ModuleLabelToPathAndFlags::operator[] ( const std::string &  filter) const
inline

Definition at line 134 of file PATTriggerProducer.h.

References empty_, and map_.

134  {
135  std::map<std::string, std::vector<PathAndFlags> >::const_iterator it = map_.find(filter);
136  return (it == map_.end() ? empty_ : it->second);
137  }
std::map< std::string, std::vector< PathAndFlags > > map_

Member Data Documentation

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

Definition at line 145 of file PATTriggerProducer.h.

Referenced by operator[]().

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

Definition at line 144 of file PATTriggerProducer.h.

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