CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EgHLTTrigTools.cc
Go to the documentation of this file.
2 
4 
6 
7 #include <boost/algorithm/string.hpp>
8 using namespace egHLT;
9 
11  const std::vector<std::pair<std::string,int> >& filters,
12  const trigger::TriggerEvent* trigEvt,
13  const std::string& hltTag,
14  const TrigCodes& trigCodes)
15 {
16  TrigCodes::TrigBitSet evtTrigs;
17  for(size_t filterNrInVec=0;filterNrInVec<filters.size();filterNrInVec++){
18  size_t filterNrInEvt = trigEvt->filterIndex(edm::InputTag(filters[filterNrInVec].first,"",hltTag).encode());
19  const TrigCodes::TrigBitSet filterCode = trigCodes.getCode(filters[filterNrInVec].first.c_str());
20  if(filterNrInEvt<trigEvt->sizeFilters()){ //filter found in event, however this only means that something passed the previous filter
21  const trigger::Keys& trigKeys = trigEvt->filterKeys(filterNrInEvt);
22  if(static_cast<int>(trigKeys.size())>=filters[filterNrInVec].second){
23  evtTrigs |=filterCode; //filter was passed
24  }
25  }//end check if filter is present
26  }//end loop over all filters
27 
28 
29  return evtTrigs;
30 
31 }
32 
33 
34 
35 
36 //this function runs over all parameter sets for every module that has ever run on an event in this job
37 //it looks for the specified filter module
38 //and returns the minimum number of objects required to pass the filter, -1 if its not found
39 //which is either the ncandcut or MinN parameter in the filter config
40 //assumption: nobody will ever change MinN or ncandcut without changing the filter name
41 //as this just picks the first module name and if 2 different versions of HLT were run with the filter having
42 //a different min obj required in the two versions, this may give the wrong answer
44 {
45 
46  //will return out of for loop once its found it to save time
47  const edm::pset::Registry* psetRegistry = edm::pset::Registry::instance();
48  if(psetRegistry==NULL) return -1;
49  for(edm::pset::Registry::const_iterator psetIt=psetRegistry->begin();psetIt!=psetRegistry->end();++psetIt){ //loop over every pset for every module ever run
50  const std::map<std::string,edm::Entry>& mapOfPara = psetIt->second.tbl(); //contains the parameter name and value for all the parameters of the pset
51  const std::map<std::string,edm::Entry>::const_iterator itToModLabel = mapOfPara.find("@module_label");
52  if(itToModLabel!=mapOfPara.end()){
53  if(itToModLabel->second.getString()==filterName){ //moduleName is the filter name, we have found filter, we will now return something
54  std::map<std::string,edm::Entry>::const_iterator itToCandCut = mapOfPara.find("ncandcut");
55  if(itToCandCut!=mapOfPara.end() && itToCandCut->second.typeCode()=='I') return itToCandCut->second.getInt32();
56  else{ //checks if nZcandcut exists and is int32, if not return -1
57  itToCandCut = mapOfPara.find("nZcandcut");
58  if(itToCandCut!=mapOfPara.end() && itToCandCut->second.typeCode()=='I') return itToCandCut->second.getInt32();
59  else{ //checks if MinN exists and is int32, if not return -1
60  itToCandCut = mapOfPara.find("MinN");
61  if(itToCandCut!=mapOfPara.end() && itToCandCut->second.typeCode()=='I') return itToCandCut->second.getInt32();
62  else{ //checks if minN exists and is int32, if not return -1
63  itToCandCut = mapOfPara.find("minN");
64  if(itToCandCut!=mapOfPara.end() && itToCandCut->second.typeCode()=='I') return itToCandCut->second.getInt32();
65  else return -1;
66  }
67  }
68  }
69  }
70  }
71  }
72  return -1;
73 }
74 
75 
76 //this looks into the HLT config and fills a sorted vector with the last filter of all HLT triggers
77 //it assumes this filter is either the last (in the case of ES filters) or second to last in the sequence
78 /*void trigTools::getActiveFilters(const HLTConfigProvider& hltConfig,std::vector<std::string>& activeFilters)
79  {
80  activeFilters.clear();
81 
82  for(size_t pathNr=0;pathNr<hltConfig.size();pathNr++){
83  const std::string& pathName = hltConfig.triggerName(pathNr);
84  if(pathName.find("HLT_")==0){ //hlt path as they all start with HLT_XXXX
85 
86  std::string lastFilter;
87  const std::vector<std::string>& filters = hltConfig.moduleLabels(pathNr);
88  if(!filters.empty()){
89  if(filters.back()=="hltBoolEnd" && filters.size()>=2){
90  activeFilters.push_back(filters[filters.size()-2]); //2nd to last element is the last filter, useally the case as last is hltBool except for ES bits
91  }else activeFilters.push_back(filters.back());
92  //std::cout<<filters[filters.size()-2]<<std::endl;
93  }
94  }//end hlt path check
95  }//end path loop over
96 
97  std::sort(activeFilters.begin(),activeFilters.end());
98 
99  }*/
100 //----Morse--------------
101 //want to grab all modules with saveTags==true for e/g paths
102 //veto x-triggers, which will be handled by PAGs
103 //first step towards automation; for now it is just used to check against filtersToMon
104 //should have some overhead but they will be filtered out by filterInactiveTriggers anyway
105 void trigTools::getActiveFilters(const HLTConfigProvider& hltConfig,std::vector<std::string>& activeFilters,std::vector<std::string>& activeEleFilters,std::vector<std::string>& activeEle2LegFilters,std::vector<std::string>& activePhoFilters,std::vector<std::string>& activePho2LegFilters)
106 {
107 
108  activeFilters.clear();
109  activeEleFilters.clear();
110  activeEle2LegFilters.clear();
111  activePhoFilters.clear();
112  activePho2LegFilters.clear();
113 
114  for(size_t pathNr=0;pathNr<hltConfig.size();pathNr++){
115  const std::string& pathName = hltConfig.triggerName(pathNr);
116  if(pathName.find("HLT_")==0){ //hlt path as they all start with HLT_XXXX
117  if((pathName.find("Photon")==4 || pathName.find("Ele")==4 || pathName.find("EG")==4 || pathName.find("Activity")==4 || pathName.find("Physics")==4)// e/g paths, pho or ele always come first
118  && (pathName.find("Jet")==pathName.npos && pathName.find("Muon")==pathName.npos
119  && pathName.find("Tau")==pathName.npos && pathName.find("HT")==pathName.npos
120  && pathName.find("MR")==pathName.npos && pathName.find("LEITI")==pathName.npos
121  && pathName.find("Jpsi")==pathName.npos && pathName.find("Ups")==pathName.npos ) ){//veto x-triggers
122  //std::string lastFilter;
123  const std::vector<std::string>& filters = hltConfig.saveTagsModules(pathNr);
124 
125  //std::cout<<"Number of prescale sets: "<<hltConfig.prescaleSize()<<std::endl;
126  //std::cout<<std::endl<<"Path Name: "<<pathName<<" Prescale: "<<hltConfig.prescaleValue(1,pathName)<<std::endl;
127 
128  if(!filters.empty()){//std::cout<<"Path Name: "<<pathName<<std::endl;
129  //if(filters.back()=="hltBoolEnd" && filters.size()>=2){
130  for(size_t filter=0;filter<filters.size();filter++){
131  if(filters[filter].find("Filter")!=filters[filter].npos){//keep only modules that contain the word "Filter"
132  //std::cout<<" Module Name: "<<filters[filter]<<" filter#: "<<int(filter)<<"/"<<filters.size()<<" ncandcut: "<<trigTools::getMinNrObjsRequiredByFilter(filters[filter])<<std::endl;
133  if(//keep only the last filter and the last one with ncandcut==1 (for di-object triggers)
134  (filter<filters.size()-1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter])==1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter+1])==2)
135  || (filter<filters.size()-1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter])==1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter+1])==1 && filters[filter+1].find("Mass")!=filters[filter+1].npos)
136  || (filter<filters.size()-1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter])==1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter+1])==1 && filters[filter+1].find("FEM")!=filters[filter+1].npos)
137  || (filter<filters.size()-1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter])==1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter+1])==1 && filters[filter+1].find("PFMT")!=filters[filter+1].npos)
138  || filter==filters.size()-1 ){
139  activeFilters.push_back(filters[filter]); //saves all modules with saveTags=true
140  //std::cout<<" Module Name: "<<filters[filter]<<" filter#: "<<int(filter)<<"/"<<filters.size()<<" ncandcut: "<<trigTools::getMinNrObjsRequiredByFilter(filters[filter])<<std::endl;
141  if(pathName.find("Photon")!=pathName.npos || pathName.find("Activity")!=pathName.npos || pathName.find("Physics")!=pathName.npos ){
142  activePhoFilters.push_back(filters[filter]);//saves all "Photon" paths into photon set
143  int posPho = pathName.find("Pho")+1;
144  if( pathName.find("Pho",posPho)!=pathName.npos || pathName.find("SC",posPho)!=pathName.npos ){
145  //This saves all "x_Photon_x_Photon_x" and "x_Photon_x_SC_x" path filters into 2leg photon set
146  activePho2LegFilters.push_back(filters[filter]);
147  //std::cout<<"Pho2LegPath: "<<pathName<<std::endl;
148  }
149  }
150  if(pathName.find("Ele")!=pathName.npos || pathName.find("Activity")!=pathName.npos || pathName.find("Physics")!=pathName.npos ){
151  activeEleFilters.push_back(filters[filter]);//saves all "Ele" paths into electron set
152  int posEle = pathName.find("Ele")+1;
153  if( pathName.find("Ele",posEle)!=pathName.npos || pathName.find("SC",posEle)!=pathName.npos ){
154  if(
155  (filter<filters.size()-1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter])==1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter+1])==2)
156  || (filter<filters.size()-1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter])==1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter+1])==1 && filters[filter+1].find("Mass")!=filters[filter+1].npos)
157  || (filter<filters.size()-1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter])==1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter+1])==1 && filters[filter+1].find("SC")!=filters[filter+1].npos)
158  || (filter<filters.size()-1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter])==1 && trigTools::getMinNrObjsRequiredByFilter(filters[filter+1])==1 && filters[filter+1].find("FEM")!=filters[filter+1].npos)
159  ){
160  //This saves all "x_Ele_x_Ele_x" and "x_Ele_x_SC_x" path filters into 2leg electron set
161  activeEle2LegFilters.push_back(filters[filter]+"::"+filters[filter+1]);
162  //std::cout<<"Ele2LegPath: "<<pathName<<std::endl;
163  }
164  }
165  }
166  }
167  }
168  }
169  //std::cout<<filters[filters.size()-2]<<std::endl;
170  //}else activeFilters.push_back(filters.back());
171  }
172  }
173  }//end hlt path check
174  }//end path loop over
175  /*for(size_t i=0;i<activeEle2LegFilters.size();i++){
176  std::cout<<"Leg1: "<<activeEle2LegFilters[i].substr(0,activeEle2LegFilters[i].find("::"))<<std::endl;
177  std::cout<<"Leg2: "<<activeEle2LegFilters[i].substr(activeEle2LegFilters[i].find("::")+2)<<std::endl<<std::endl;
178  }*/
179  std::sort(activeFilters.begin(),activeFilters.end());
180  std::sort(activeEleFilters.begin(),activeEleFilters.end());
181  std::sort(activeEle2LegFilters.begin(),activeEle2LegFilters.end());
182  std::sort(activePhoFilters.begin(),activePhoFilters.end());
183 }
184 //----------------------------
185 
186 //this function will filter the inactive filternames
187 //it assumes the list of active filters is sorted
188 //at some point this will be replaced with one line of fancy stl code but I want it to work now :)
189 void trigTools::filterInactiveTriggers(std::vector<std::string>& namesToFilter,std::vector<std::string>& activeFilters)
190 {
191  //tempory vector to store the filtered results
192  std::vector<std::string> filteredNames;
193  /*
194  for(size_t inputFilterNr=0;inputFilterNr<namesToFilter.size();inputFilterNr++){
195  if(std::binary_search(activeFilters.begin(),activeFilters.end(),namesToFilter[inputFilterNr])){
196  filteredNames.push_back(namesToFilter[inputFilterNr]);
197  }//std::cout<<filteredNames[inputFilterNr]<<std::endl;
198  }
199  */
200  //namesToFilter.swap(activeFilters);
201  filteredNames = activeFilters;
202  namesToFilter.swap(filteredNames);
203 }
204 
205 //input filters have format filter1:filter2, this checks both filters are active, rejects ones where both are not active
206 void trigTools::filterInactiveTightLooseTriggers(std::vector<std::string>& namesToFilter,const std::vector<std::string>& activeFilters)
207 {
208  //tempory vector to store the filtered results
209  std::vector<std::string> filteredNames;
210 
211  for(size_t inputFilterNr=0;inputFilterNr<namesToFilter.size();inputFilterNr++){
212  std::vector<std::string> names;
213  boost::split(names,namesToFilter[inputFilterNr],boost::is_any_of(std::string(":")));
214  if(names.size()!=2) continue; //format incorrect, reject it
215  if(std::binary_search(activeFilters.begin(),activeFilters.end(),names[0]) &&
216  std::binary_search(activeFilters.begin(),activeFilters.end(),names[1])){ //both filters are valid
217  filteredNames.push_back(namesToFilter[inputFilterNr]);
218  }
219  }
220 
221  namesToFilter.swap(filteredNames);
222 }
223 
224 //a comparison functiod for std::pair<std::string,std::string>
225 //this probably (infact must) exist elsewhere
227 public:
228  bool operator()(const std::pair<std::string,std::string>&lhs,
229  const std::pair<std::string,std::string>& rhs)const{return keyLess(lhs.first,rhs.first);}
230  bool operator()(const std::pair<std::string,std::string>&lhs,
231  const std::pair<std::string,std::string>::first_type& rhs)const{return keyLess(lhs.first,rhs);}
232  bool operator()(const std::pair<std::string,std::string>::first_type &lhs,
233  const std::pair<std::string,std::string>& rhs)const{return keyLess(lhs,rhs.first);}
234 private:
235  bool keyLess(const std::pair<std::string,std::string>::first_type& k1,const std::pair<std::string,std::string>::first_type& k2)const{return k1<k2;}
236 };
237 
238 void trigTools::translateFiltersToPathNames(const HLTConfigProvider& hltConfig,const std::vector<std::string>& filters,std::vector<std::string>& paths)
239 {
240 
241  paths.clear();
242  std::vector<std::pair<std::string,std::string> > filtersAndPaths;
243 
244  for(size_t pathNr=0;pathNr<hltConfig.size();pathNr++){
245  const std::string& pathName = hltConfig.triggerName(pathNr);
246  if(pathName.find("HLT_")==0){ //hlt path as they all start with HLT_XXXX
247 
248  std::string lastFilter;
249  const std::vector<std::string>& pathFilters = hltConfig.moduleLabels(pathNr);
250  if(!pathFilters.empty()){
251  if(pathFilters.back()=="hltBoolEnd" && pathFilters.size()>=2){
252  //2nd to last element is the last filter, useally the case as last is hltBool except for ES bits
253  filtersAndPaths.push_back(std::make_pair(pathFilters[pathFilters.size()-2],pathName));
254  }else filtersAndPaths.push_back(std::make_pair(pathFilters.back(),pathName));
255  }
256  }//end hlt path check
257  }//end path loop over
258 
259  std::sort(filtersAndPaths.begin(),filtersAndPaths.end(),StringPairCompare());
260 
261  for(size_t filterNr=0;filterNr<filters.size();filterNr++){
262  typedef std::vector<std::pair<std::string,std::string> >::const_iterator VecIt;
263  std::pair<VecIt,VecIt> searchResult = std::equal_range(filtersAndPaths.begin(),filtersAndPaths.end(),filters[filterNr],StringPairCompare());
264  if(searchResult.first!=searchResult.second) paths.push_back(searchResult.first->second);
265  else paths.push_back(filters[filterNr]);//if cant find the path, just write the filter
266  //---Morse-----
267  //std::cout<<filtersAndPaths[filterNr].first<<" "<<filtersAndPaths[filterNr].second<<std::endl;
268  //-------------
269  }
270 
271 }
272 
274 {
275  const std::vector<std::string>& modules = hltConfig.moduleLabels(path);
276 
277  for(size_t moduleNr=0;moduleNr<modules.size();moduleNr++){
278  const std::string& moduleName=modules[moduleNr];
279  if(moduleName.find("hltL1s")==0) return moduleName; //found l1 seed module
280  }
281  std::string dummy;
282  return dummy;
283 
284 }
285 
286 //hunts for first instance of pattern EtX where X = a number of any length and returns X
288 {
289  size_t etStrPos = trigName.find("Et");
290  while(etStrPos!=std::string::npos && trigName.find_first_of("1234567890",etStrPos)!=etStrPos+2){
291  etStrPos = trigName.find("Et",etStrPos+1);
292  }
293  if(etStrPos!=std::string::npos && trigName.find_first_of("1234567890",etStrPos)==etStrPos+2){
294  size_t endOfEtValStr = trigName.find_first_not_of("1234567890",etStrPos+2);
295 
296  std::istringstream etValStr(trigName.substr(etStrPos+2,endOfEtValStr-etStrPos-2));
297  float etVal;
298  etValStr>> etVal;
299  return etVal;
300 
301  }
302  return 0;
303 
304 }
305 
306 //hunts for second instance of pattern X where X = a number of any length and returns X
307 //This has gotten ridiculously more complicated now that filters do not have the "Et" string in them
309 {//std::cout<<"What the heck is this trigName?:"<<trigName<<std::endl;
310  bool isEle=false,isPhoton=false,isEG=false,isEle2=false,isPhoton2=false,isEG2=false,isSC2=false;
311  size_t etStrPos = trigName.npos;
312  if( trigName.find("Ele")<trigName.find("Photon") && trigName.find("Ele")<trigName.find("EG") ){
313  etStrPos=trigName.find("Ele");isEle=true; }
314  else if( trigName.find("EG")<trigName.find("Photon") && trigName.find("EG")<trigName.find("Ele") ){
315  etStrPos=trigName.find("EG");isEG=true; }
316  else if( trigName.find("Photon")<trigName.find("Ele") && trigName.find("Photon")<trigName.find("EG") ){
317  etStrPos=trigName.find("Photon");isPhoton=true; }
318  //size_t etStrPos = trigName.find("Et");
319  //std::cout<<"Got Original Et spot; etStrPos="<<etStrPos<<std::endl;
320  /*while(etStrPos!=std::string::npos && trigName.find_first_of("1234567890",etStrPos)!=etStrPos+2){
321  etStrPos = trigName.find("Et",etStrPos+1);//std::cout<<"Got first Et spot; etStrPos="<<etStrPos<<std::endl;
322  }*/
323  if(etStrPos!=trigName.npos
324  && ( trigName.find("Ele",etStrPos+1)!=trigName.npos || trigName.find("EG",etStrPos+1)!=trigName.npos
325  || trigName.find("Photon",etStrPos+1)!=trigName.npos || trigName.find("SC",etStrPos+1)!=trigName.npos)){
326  if(trigName.find("Ele",etStrPos+1)<trigName.find("Photon",etStrPos+1) && trigName.find("Ele",etStrPos+1)<trigName.find("EG",etStrPos+1) && trigName.find("Ele",etStrPos+1)<trigName.find("SC",etStrPos+1) ){etStrPos=trigName.find("Ele",etStrPos+1);isEle2=true;}
327  else if(trigName.find("EG",etStrPos+1)<trigName.find("Photon",etStrPos+1) && trigName.find("EG",etStrPos+1)<trigName.find("Ele",etStrPos+1) && trigName.find("EG",etStrPos+1)<trigName.find("SC",etStrPos+1)){etStrPos=trigName.find("EG",etStrPos+1);isEG2=true;}
328  else if(trigName.find("Photon",etStrPos+1)<trigName.find("EG",etStrPos+1) && trigName.find("Photon",etStrPos+1)<trigName.find("Ele",etStrPos+1) && trigName.find("Photon",etStrPos+1)<trigName.find("SC",etStrPos+1)){etStrPos=trigName.find("Photon",etStrPos+1);isPhoton2=true;}
329  else if(trigName.find("SC",etStrPos+1)<trigName.find("EG",etStrPos+1) && trigName.find("SC",etStrPos+1)<trigName.find("Ele",etStrPos+1) && trigName.find("SC",etStrPos+1)<trigName.find("Photon",etStrPos+1)){etStrPos=trigName.find("Photon",etStrPos+1);isSC2=true;}
330  //std::cout<<"Got second Et spot; etStrPos="<<etStrPos<<std::endl;//}//get second instance. if it dne, keep first
331 
332  if(isEle2){
333  if(etStrPos!=trigName.npos && trigName.find_first_of("1234567890",etStrPos)==etStrPos+3){//std::cout<<"In if"<<std::endl;
334  size_t endOfEtValStr = trigName.find_first_not_of("1234567890",etStrPos+3);
335 
336  std::istringstream etValStr(trigName.substr(etStrPos+3,endOfEtValStr-etStrPos-3));
337  float etVal;
338  etValStr>> etVal;//std::cout<<"TrigName= "<<trigName<<" etVal= "<<etVal<<std::endl;
339  return etVal;
340  }
341  }
342  if(isEG2 || isSC2){
343  if(etStrPos!=trigName.npos && trigName.find_first_of("1234567890",etStrPos)==etStrPos+2){//std::cout<<"In if"<<std::endl;
344  size_t endOfEtValStr = trigName.find_first_not_of("1234567890",etStrPos+2);
345 
346  std::istringstream etValStr(trigName.substr(etStrPos+2,endOfEtValStr-etStrPos-2));
347  float etVal;
348  etValStr>> etVal;//std::cout<<"TrigName= "<<trigName<<" etVal= "<<etVal<<std::endl;
349  return etVal;
350  }
351  }
352 
353  if(isPhoton2){
354  if(etStrPos!=trigName.npos && trigName.find_first_of("1234567890",etStrPos)==etStrPos+6){//std::cout<<"In if"<<std::endl;
355  size_t endOfEtValStr = trigName.find_first_not_of("1234567890",etStrPos+6);
356 
357  std::istringstream etValStr(trigName.substr(etStrPos+6,endOfEtValStr-etStrPos-6));
358  float etVal;
359  etValStr>> etVal;//std::cout<<"TrigName= "<<trigName<<" etVal= "<<etVal<<std::endl;
360  return etVal;
361  }
362  }
363  }
364  else if(etStrPos!=trigName.npos){
365  if(isEle){
366  if(etStrPos!=trigName.npos && trigName.find_first_of("1234567890",etStrPos)==etStrPos+3){//std::cout<<"In if"<<std::endl;
367  size_t endOfEtValStr = trigName.find_first_not_of("1234567890",etStrPos+3);
368 
369  std::istringstream etValStr(trigName.substr(etStrPos+3,endOfEtValStr-etStrPos-3));
370  float etVal;
371  etValStr>> etVal;//std::cout<<"TrigName= "<<trigName<<" etVal= "<<etVal<<std::endl;
372  return etVal;
373  }
374  }
375  if(isEG){
376  if(etStrPos!=trigName.npos && trigName.find_first_of("1234567890",etStrPos)==etStrPos+2){//std::cout<<"In if"<<std::endl;
377  size_t endOfEtValStr = trigName.find_first_not_of("1234567890",etStrPos+2);
378 
379  std::istringstream etValStr(trigName.substr(etStrPos+2,endOfEtValStr-etStrPos-2));
380  float etVal;
381  etValStr>> etVal;//std::cout<<"TrigName= "<<trigName<<" etVal= "<<etVal<<std::endl;
382  return etVal;
383  }
384  }
385 
386  if(isPhoton){
387  if(etStrPos!=trigName.npos && trigName.find_first_of("1234567890",etStrPos)==etStrPos+6){//std::cout<<"In if"<<std::endl;
388  size_t endOfEtValStr = trigName.find_first_not_of("1234567890",etStrPos+6);
389 
390  std::istringstream etValStr(trigName.substr(etStrPos+6,endOfEtValStr-etStrPos-6));
391  float etVal;
392  etValStr>> etVal;//std::cout<<"TrigName= "<<trigName<<" etVal= "<<etVal<<std::endl;
393  return etVal;
394  }
395  }
396  }
397 
398  return 0;
399 
400 }
unsigned int size() const
number of trigger paths in trigger table
map_type::const_iterator const_iterator
Definition: Registry.h:63
The single EDProduct to be saved for each event (AOD case)
Definition: TriggerEvent.h:25
const std::string & triggerName(unsigned int triggerIndex) const
static const HistoName names[]
const_iterator end() const
Definition: Registry.h:69
TrigBitSet getCode(const char *descript) const
int getMinNrObjsRequiredByFilter(const std::string &filterName)
const Keys & filterKeys(trigger::size_type index) const
Definition: TriggerEvent.h:111
trigger::size_type filterIndex(const edm::InputTag &filterTag) const
find index of filter in data-member vector from filter tag
Definition: TriggerEvent.h:123
#define NULL
Definition: scimark2.h:8
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
bool operator()(const std::pair< std::string, std::string >::first_type &lhs, const std::pair< std::string, std::string > &rhs) const
std::vector< TPRegexp > filters
Definition: eve_filter.cc:25
const std::vector< std::string > & saveTagsModules(unsigned int trigger) const
U second(std::pair< T, U > const &p)
bool keyLess(const std::pair< std::string, std::string >::first_type &k1, const std::pair< std::string, std::string >::first_type &k2) const
std::string moduleName(Provenance const &provenance)
Definition: Provenance.cc:27
tuple path
else: Piece not in the list, fine.
bool operator()(const std::pair< std::string, std::string > &lhs, const std::pair< std::string, std::string > &rhs) const
std::string getL1SeedFilterOfPath(const HLTConfigProvider &hltConfig, const std::string &path)
const_iterator begin() const
Definition: Registry.h:65
float getEtThresFromName(const std::string &trigName)
TrigCodes::TrigBitSet getFiltersPassed(const std::vector< std::pair< std::string, int > > &filters, const trigger::TriggerEvent *trigEvt, const std::string &hltTag, const TrigCodes &trigCodes)
const std::vector< std::string > & moduleLabels(unsigned int trigger) const
label(s) of module(s) on a trigger path
void getActiveFilters(const HLTConfigProvider &hltConfig, std::vector< std::string > &activeFilters, std::vector< std::string > &activeEleFilters, std::vector< std::string > &activeEle2LegFilters, std::vector< std::string > &activePhoFilters, std::vector< std::string > &activePho2LegFilters)
std::vector< size_type > Keys
bool operator()(const std::pair< std::string, std::string > &lhs, const std::pair< std::string, std::string >::first_type &rhs) const
void filterInactiveTriggers(std::vector< std::string > &namesToFilter, std::vector< std::string > &activeFilters)
void filterInactiveTightLooseTriggers(std::vector< std::string > &namesToFilter, const std::vector< std::string > &activeFilters)
float getSecondEtThresFromName(const std::string &trigName)
double split
Definition: MVATrainer.cc:139
void translateFiltersToPathNames(const HLTConfigProvider &hltConfig, const std::vector< std::string > &filters, std::vector< std::string > &paths)
static Registry * instance()
Definition: Registry.cc:16
std::bitset< maxNrBits_ > TrigBitSet