ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/OSUT3Analysis/AnaTools/plugins/OSUAnalysis.cc
(Generate patch)

Comparing UserCode/OSUT3Analysis/AnaTools/plugins/OSUAnalysis.cc (file contents):
Revision 1.70 by qpython, Wed May 29 15:29:27 2013 UTC vs.
Revision 1.92 by wulsin, Mon Jul 1 11:54:18 2013 UTC

# Line 28 | Line 28 | OSUAnalysis::OSUAnalysis (const edm::Par
28    datasetType_ (cfg.getParameter<string> ("datasetType")),
29    channels_  (cfg.getParameter<vector<edm::ParameterSet> >("channels")),
30    histogramSets_ (cfg.getParameter<vector<edm::ParameterSet> >("histogramSets")),
31 +  useEDMFormat_   (cfg.getParameter<bool>("useEDMFormat")),
32 +  treeBranchSets_   (cfg.getParameter<vector<edm::ParameterSet> >("treeBranchSets")),
33    plotAllObjectsInPassingEvents_ (cfg.getParameter<bool> ("plotAllObjectsInPassingEvents")),
34    doPileupReweighting_ (cfg.getParameter<bool> ("doPileupReweighting")),
35    applyLeptonSF_ (cfg.getParameter<bool> ("applyLeptonSF")),
36 <  printEventInfo_ (cfg.getParameter<bool> ("printEventInfo")),
36 >  applyBtagSF_ (cfg.getParameter<bool> ("applyBtagSF")),
37 >  minBtag_ (cfg.getParameter<int> ("minBtag")),
38 >  maxBtag_ (cfg.getParameter<int> ("maxBtag")),
39 >  printEventInfo_      (cfg.getParameter<bool> ("printEventInfo")),
40 >  printAllTriggers_    (cfg.getParameter<bool> ("printAllTriggers")),
41    useTrackCaloRhoCorr_ (cfg.getParameter<bool> ("useTrackCaloRhoCorr")),
42    stopCTau_ (cfg.getParameter<vector<double> > ("stopCTau")),
43    GetPlotsAfterEachCut_ (cfg.getParameter<bool> ("GetPlotsAfterEachCut"))
44 < {
44 > {
45  
46    TH1::SetDefaultSumw2 ();
47  
# Line 46 | Line 52 | OSUAnalysis::OSUAnalysis (const edm::Par
52        muonSFWeight_ = new MuonSFWeight (muonSFFile_, muonSF_);
53        electronSFWeight_ = new ElectronSFWeight ("53X", electronSFID_);
54      }
55 +    if (applyBtagSF_){
56 +      bTagSFWeight_ = new BtagSFWeight;
57 +    }
58    }
59    if (datasetType_ == "signalMC" && regex_match (dataset_, regex ("stop.*to.*_.*mm.*")))
60      stopCTauWeight_ = new StopCTauWeight (stopCTau_.at (0), stopCTau_.at (1), stops_);
# Line 57 | Line 66 | OSUAnalysis::OSUAnalysis (const edm::Par
66  
67    //always get vertex collection so we can assign the primary vertex in the event
68    objectsToGet.push_back("primaryvertexs");
60
61  //always make the plot of number of primary vertices (to check pile-up reweighting)
69    objectsToPlot.push_back("primaryvertexs");
70 +  objectsToCut.push_back("primaryvertexs");
71 +
72  
73    //always get the MC particles to do GEN-matching
74    objectsToGet.push_back("mcparticles");
# Line 67 | Line 76 | OSUAnalysis::OSUAnalysis (const edm::Par
76    //always get the event collection to do pile-up reweighting
77    objectsToGet.push_back("events");
78  
79 +
80 +  // Parse the tree variable definitions.
81 +  for (uint iBranchSet = 0; !useEDMFormat_ && iBranchSet<treeBranchSets_.size(); iBranchSet++) {
82 +    string tempInputCollection = treeBranchSets_.at(iBranchSet).getParameter<string> ("inputCollection");
83 +    if(tempInputCollection.find("pairs")!=string::npos) { cout << "Warning:  tree filling is not configured for pairs of objects, so will not work for collection: " << tempInputCollection << endl; }
84 +    objectsToGet.push_back(tempInputCollection);
85 +    objectsToCut.push_back(tempInputCollection);
86 +
87 +    vector<string> branchList(treeBranchSets_.at(iBranchSet).getParameter<vector<string> >("branches"));
88 +
89 +    for (uint iBranch = 0; iBranch<branchList.size(); iBranch++) {
90 +      BranchSpecs br;
91 +      br.inputCollection = tempInputCollection;
92 +      br.inputVariable = branchList.at(iBranch);
93 +      TString newName = TString(br.inputCollection) + "_" + TString(br.inputVariable);
94 +      br.name = string(newName.Data());
95 +      treeBranches_.push_back(br);
96 +    }
97 +
98 +  } // end   for (uint iBranchSet = 0; iBranchSet<treeBranchSets_.size(); iBranchSet++)
99 +
100 +
101    //parse the histogram definitions
102    for(uint currentHistogramSet = 0; currentHistogramSet != histogramSets_.size(); currentHistogramSet++){
103  
104      string tempInputCollection = histogramSets_.at(currentHistogramSet).getParameter<string> ("inputCollection");
105      if(tempInputCollection == "muon-electron pairs") tempInputCollection = "electron-muon pairs";
106 +    if(tempInputCollection == "photon-muon pairs") tempInputCollection = "muon-photon pairs";
107 +    if(tempInputCollection == "photon-electron pairs") tempInputCollection = "electron-photon pairs";
108      if(tempInputCollection == "jet-electron pairs") tempInputCollection = "electron-jet pairs";
109 +    if(tempInputCollection == "jet-photon pairs") tempInputCollection = "photon-jet pairs";
110      if(tempInputCollection == "jet-muon pairs") tempInputCollection = "muon-jet pairs";
111 +    if(tempInputCollection == "jet-met pairs")  tempInputCollection = "met-jet pairs";
112      if(tempInputCollection == "event-track pairs")   tempInputCollection = "track-event pairs";
113      if(tempInputCollection == "secondary muon-muon pairs")   tempInputCollection = "muon-secondary muon pairs";
114 +    if(tempInputCollection == "secondary jet-muon pairs")   tempInputCollection = "muon-secondary jet pairs";
115 +    if(tempInputCollection == "secondary jet-electron pairs")   tempInputCollection = "electron-secondary jet pairs";
116 +    if(tempInputCollection == "secondary jet-photon pairs")   tempInputCollection = "photon-secondary jet pairs";
117 +    if(tempInputCollection == "secondary jet-jet pairs")   tempInputCollection = "jet-secondary jet pairs";
118      if(tempInputCollection == "secondary electron-electron pairs")   tempInputCollection = "electron-secondary electron pairs";
119      if(tempInputCollection == "trigobj-electron pairs")   tempInputCollection = "electron-trigobj pairs";
120      if(tempInputCollection == "trigobj-muon pairs")   tempInputCollection = "muon-trigobj pairs";
# Line 90 | Line 129 | OSUAnalysis::OSUAnalysis (const edm::Par
129        }
130        objectsToPlot.push_back(tempInputCollection);
131        objectsToCut.push_back(tempInputCollection);
132 <    }
94 <    else{//pair of objects, need to add the pair and the individual objects to the lists of things to Get/Plot/Cut
132 >    } else { //pair of objects, need to add the pair and the individual objects to the lists of things to Get/Plot/Cut
133        string obj1;
134        string obj2;
135        getTwoObjs(tempInputCollection, obj1, obj2);
# Line 105 | Line 143 | OSUAnalysis::OSUAnalysis (const edm::Par
143        objectsToGet.push_back(tempInputCollection);
144        objectsToGet.push_back(obj1);
145        objectsToGet.push_back(obj2ToGet);
146 +    } // end else
147 +
148  
109    }
149  
150      vector<edm::ParameterSet> histogramList_  (histogramSets_.at(currentHistogramSet).getParameter<vector<edm::ParameterSet> >("histograms"));
151  
# Line 127 | Line 166 | OSUAnalysis::OSUAnalysis (const edm::Par
166        histograms.push_back(tempHistogram);
167  
168      }
169 <  }
169 >  } //   for(uint currentHistogramSet = 0; currentHistogramSet != histogramSets_.size(); currentHistogramSet++)
170 >
171    //make unique vector of objects we need to plot (so we can book a histogram with the number of each object)
172    sort( objectsToPlot.begin(), objectsToPlot.end() );
173    objectsToPlot.erase( unique( objectsToPlot.begin(), objectsToPlot.end() ), objectsToPlot.end() );
# Line 212 | Line 252 | OSUAnalysis::OSUAnalysis (const edm::Par
252      //set triggers for this channel
253      vector<string> triggerNames;
254      triggerNames.clear();
255 +    vector<string> triggerToVetoNames;
256 +    triggerToVetoNames.clear();
257 +
258      tempChannel.triggers.clear();
259 +    tempChannel.triggersToVeto.clear();
260      if(channels_.at(currentChannel).exists("triggers")){
261        triggerNames   = channels_.at(currentChannel).getParameter<vector<string> >("triggers");
262        for(uint trigger = 0; trigger!= triggerNames.size(); trigger++)
263          tempChannel.triggers.push_back(triggerNames.at(trigger));
264        objectsToGet.push_back("triggers");
265      }
266 <
266 >    if(channels_.at(currentChannel).exists("triggersToVeto")){
267 >      triggerToVetoNames = channels_.at(currentChannel).getParameter<vector<string> >("triggersToVeto");
268 >      for(uint trigger = 0; trigger!= triggerToVetoNames.size(); trigger++)
269 >        tempChannel.triggersToVeto.push_back(triggerToVetoNames.at(trigger));
270 >      objectsToGet.push_back("triggers");
271 >    }
272  
273  
274  
275      //create cutFlow for this channel
276      cutFlows_.push_back (new CutFlow (fs_, channelName));
277      vector<TFileDirectory> directories; //vector of directories in the output file.
278 +    vector<TFileDirectory> treeDirectories; //vector of directories for trees in the output file.
279      vector<string> subSubDirNames;//subdirectories in each channel.
280      //get list of cuts for this channel
281      vector<edm::ParameterSet> cuts_  (channels_.at(currentChannel).getParameter<vector<edm::ParameterSet> >("cuts"));
# Line 237 | Line 287 | OSUAnalysis::OSUAnalysis (const edm::Par
287        //store input collection for cut
288        string tempInputCollection = cuts_.at(currentCut).getParameter<string> ("inputCollection");
289        if(tempInputCollection == "muon-electron pairs") tempInputCollection = "electron-muon pairs";
290 +      if(tempInputCollection == "photon-electron pairs") tempInputCollection = "electron-photon pairs";
291 +      if(tempInputCollection == "photon-muon pairs") tempInputCollection = "muon-photon pairs";
292        if(tempInputCollection == "jet-electron pairs") tempInputCollection = "electron-jet pairs";
293        if(tempInputCollection == "jet-muon pairs") tempInputCollection = "muon-jet pairs";
294 +      if(tempInputCollection == "jet-met pairs")  tempInputCollection = "met-jet pairs";
295 +      if(tempInputCollection == "jet-photon pairs") tempInputCollection = "photon-jet pairs";
296        if(tempInputCollection == "event-track pairs")   tempInputCollection = "track-event pairs";
297        if(tempInputCollection == "secondary muon-muon pairs")   tempInputCollection = "muon-secondary muon pairs";
298 +      if(tempInputCollection == "secondary jet-jet pairs")   tempInputCollection = "jet-secondary jet pairs";
299 +      if(tempInputCollection == "secondary jet-muon pairs")   tempInputCollection = "muon-secondary jet pairs";
300 +      if(tempInputCollection == "secondary jet-photon pairs")   tempInputCollection = "photon-secondary jet pairs";
301 +      if(tempInputCollection == "secondary jet-electron pairs")   tempInputCollection = "electron-secondary jet pairs";
302        if(tempInputCollection == "secondary electron-electron pairs")   tempInputCollection = "electron-secondary electron pairs";
303        if(tempInputCollection == "trigobj-electron pairs")   tempInputCollection = "electron-trigobj pairs";
304        if(tempInputCollection == "trigobj-muon pairs")   tempInputCollection = "muon-trigobj pairs";
# Line 310 | Line 368 | OSUAnalysis::OSUAnalysis (const edm::Par
368        tempCut.numberRequired = numberRequiredInt;// number of objects required to pass the cut
369        tempCut.eventComparativeOperator = numberRequiredVector.at(0);// comparison to make
370  
371 <      //Set up vectors to store the directories and subDIrectories for each channel.
371 >      //Set up vectors to store the directories and subDirectories for each channel.
372        string subSubDirName;
373        string tempCutName;
374        if(cuts_.at(currentCut).exists("alias")){
375          tempCutName = cuts_.at(currentCut).getParameter<string> ("alias");
376 <        subSubDirName = "After " + cuts_.at(currentCut).getParameter<string> ("alias") + " Cut Applied";
376 >        subSubDirName = "After " + tempCutName + " Cut Applied";
377        }
378        else{
379          //construct string for cutflow table
# Line 326 | Line 384 | OSUAnalysis::OSUAnalysis (const edm::Par
384          subSubDirName = "After " + numberRequiredString + " " + collectionString + " with " + cutString + " Cut Applied";
385        }
386  
387 +      tempCut.isVeto = false;
388 +      if(cuts_.at(currentCut).exists("isVeto")){
389 +        bool isVeto = cuts_.at(currentCut).getParameter<bool> ("isVeto");
390 +        if (isVeto == true) tempCut.isVeto = true;
391 +      }
392        subSubDirNames.push_back(subSubDirName);
393        tempCut.name = tempCutName;
394  
# Line 340 | Line 403 | OSUAnalysis::OSUAnalysis (const edm::Par
403      TFileDirectory subDir = fs_->mkdir( channelName );
404      //loop over the cuts to set up subdirectory for each cut if GetPlotsAfterEachCut_ is true.
405      if(GetPlotsAfterEachCut_){
406 <       for( uint currentDir=0; currentDir != subSubDirNames.size(); currentDir++){
407 <            TFileDirectory subSubDir = subDir.mkdir( subSubDirNames[currentDir] );
408 <            directories.push_back(subSubDir);
409 <            map<string, TH1D*> oneDhistoMap;
410 <            oneDHistsTmp.push_back(oneDhistoMap);
411 <            map<string, TH2D*> twoDhistoMap;
412 <            twoDHistsTmp.push_back(twoDhistoMap);
406 >      for( uint currentDir=0; currentDir != subSubDirNames.size(); currentDir++){
407 >        TFileDirectory subSubDir = subDir.mkdir( subSubDirNames[currentDir] );
408 >        directories.push_back(subSubDir);
409 >        map<string, TH1D*> oneDhistoMap;
410 >        oneDHistsTmp.push_back(oneDhistoMap);
411 >        map<string, TH2D*> twoDhistoMap;
412 >        twoDHistsTmp.push_back(twoDhistoMap);
413        }
414 +      treeDirectories.push_back(subDir);
415        oneDHists_.push_back(oneDHistsTmp);
416        twoDHists_.push_back(twoDHistsTmp);
417      }
418 <   //only set up directories with names of the channels if GetPlotsAfterEachCut_ is false.
419 <   else{
418 >    //only set up directories with names of the channels if GetPlotsAfterEachCut_ is false.
419 >    else{
420        map<string, TH1D*> oneDhistoMap;
421        oneDHistsTmp.push_back(oneDhistoMap);
422        map<string, TH2D*> twoDhistoMap;
# Line 360 | Line 424 | OSUAnalysis::OSUAnalysis (const edm::Par
424        oneDHists_.push_back(oneDHistsTmp);
425        twoDHists_.push_back(twoDHistsTmp);
426        directories.push_back(subDir);
427 <   }
427 >      treeDirectories.push_back(subDir);
428 >
429 >    }
430 >
431 >    for(uint currentDir = 0; !useEDMFormat_ && currentDir != treeDirectories.size(); currentDir++){
432 >      TTree* newTree = treeDirectories.at(currentDir).make<TTree> (TString("BNTree_"+channelLabel), TString("BNTree_"+channelLabel));
433 >      BNTrees_.push_back(newTree);
434 >      for (uint iBranch = 0; iBranch < treeBranches_.size(); iBranch++){
435 >        BranchSpecs currentVar = treeBranches_.at(iBranch);
436 >        vector<float> newVec;
437 >        BNTreeBranchVals_[currentVar.name] = newVec;
438 >        BNTrees_.back()->Branch(TString(currentVar.name), &BNTreeBranchVals_.at(currentVar.name));
439 >      } // end for (uint iBranch = 0; iBranch < treeBranches_.size(); iBranch++)
440 >    }
441 >
442      //book all histograms included in the configuration
443      for(uint currentDir = 0; currentDir != directories.size(); currentDir++){//loop over all the directories.
444 <    for(uint currentHistogramIndex = 0; currentHistogramIndex != histograms.size(); currentHistogramIndex++){
445 <      histogram currentHistogram = histograms.at(currentHistogramIndex);
446 <      int numBinsElements = currentHistogram.bins.size();
447 <      int numInputVariables = currentHistogram.inputVariables.size();
448 <      int numBinEdgesX = currentHistogram.variableBinsX.size();
449 <      int numBinEdgesY = currentHistogram.variableBinsY.size();
450 <
451 <      if(numBinsElements == 1){
452 <        if(numBinEdgesX > 1){
453 <          if(numBinEdgesY > 1)
454 <            numBinsElements = 6;
444 >
445 >      for(uint currentHistogramIndex = 0; currentHistogramIndex != histograms.size(); currentHistogramIndex++){
446 >
447 >        histogram currentHistogram = histograms.at(currentHistogramIndex);
448 >        int numBinsElements = currentHistogram.bins.size();
449 >        int numInputVariables = currentHistogram.inputVariables.size();
450 >        int numBinEdgesX = currentHistogram.variableBinsX.size();
451 >        int numBinEdgesY = currentHistogram.variableBinsY.size();
452 >
453 >        if(numBinsElements == 1){
454 >          if(numBinEdgesX > 1){
455 >            if(numBinEdgesY > 1)
456 >              numBinsElements = 6;
457 >            else
458 >              numBinsElements = 3;
459 >          }
460 >        }
461 >        if(numBinsElements != 3 && numBinsElements !=6){
462 >          cout << "Error: Didn't find correct number of bin specifications for histogram named '" << currentHistogram.name << "'\n";
463 >          exit(0);
464 >        }
465 >        else if((numBinsElements == 3 && numInputVariables !=1) || (numBinsElements == 6 && numInputVariables!=2)){
466 >          cout << "Error: Didn't find correct number of input variables for histogram named '" << currentHistogram.name << "'\n";
467 >          exit(0);
468 >        }
469 >        else if(numBinsElements == 3){
470 >          if (currentHistogram.bins.size () == 3)
471 >            oneDHists_.at(currentChannel).at(currentDir)[currentHistogram.name] = directories.at(currentDir).make<TH1D> (TString(currentHistogram.name),channelLabel+" channel: "+currentHistogram.title, currentHistogram.bins.at(0), currentHistogram.bins.at(1), currentHistogram.bins.at(2));
472            else
473 <            numBinsElements = 3;
473 >            {
474 >              oneDHists_.at(currentChannel).at(currentDir)[currentHistogram.name] = directories.at(currentDir).make<TH1D> (TString(currentHistogram.name),channelLabel+" channel: "+currentHistogram.title, numBinEdgesX - 1, currentHistogram.variableBinsX.data ());
475 >            }
476          }
477 <      }
478 <      if(numBinsElements != 3 && numBinsElements !=6){
479 <        cout << "Error: Didn't find correct number of bin specifications for histogram named '" << currentHistogram.name << "'\n";
480 <        exit(0);
481 <      }
482 <      else if((numBinsElements == 3 && numInputVariables !=1) || (numBinsElements == 6 && numInputVariables!=2)){
483 <        cout << "Error: Didn't find correct number of input variables for histogram named '" << currentHistogram.name << "'\n";
484 <        exit(0);
485 <      }
486 <      else if(numBinsElements == 3){
487 <        if (currentHistogram.bins.size () == 3)
488 <          oneDHists_.at(currentChannel).at(currentDir)[currentHistogram.name] = directories.at(currentDir).make<TH1D> (TString(currentHistogram.name),channelLabel+" channel: "+currentHistogram.title, currentHistogram.bins.at(0), currentHistogram.bins.at(1), currentHistogram.bins.at(2));
489 <        else
490 <          {
491 <            oneDHists_.at(currentChannel).at(currentDir)[currentHistogram.name] = directories.at(currentDir).make<TH1D> (TString(currentHistogram.name),channelLabel+" channel: "+currentHistogram.title, numBinEdgesX - 1, currentHistogram.variableBinsX.data ());
477 >        else if(numBinsElements == 6){
478 >          if (currentHistogram.bins.size () == 6)
479 >            twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name] = directories.at(currentDir).make<TH2D> (TString(currentHistogram.name),channelLabel+" channel: "+currentHistogram.title, currentHistogram.bins.at(0), currentHistogram.bins.at(1), currentHistogram.bins.at(2),currentHistogram.bins.at(3),currentHistogram.bins.at(4),currentHistogram.bins.at(5));
480 >          else
481 >            twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name] = directories.at(currentDir).make<TH2D> (TString(currentHistogram.name),channelLabel+" channel: "+currentHistogram.title, numBinEdgesX - 1, currentHistogram.variableBinsX.data (), numBinEdgesY - 1, currentHistogram.variableBinsY.data ());
482 >        }
483 >
484 >
485 >        if(currentHistogram.name.find("GenMatch")==string::npos) continue;
486 >
487 >        // bin      particle type
488 >        // ---      -------------
489 >        //  0        unmatched
490 >        //  1        u
491 >        //  2        d
492 >        //  3        s
493 >        //  4        c
494 >        //  5        b
495 >        //  6        t
496 >        //  7        e
497 >        //  8        mu
498 >        //  9        tau
499 >        // 10        nu
500 >        // 11        g
501 >        // 12        gamma
502 >        // 13        Z
503 >        // 14        W
504 >        // 15        light meson
505 >        // 16        K meson
506 >        // 17        D meson
507 >        // 18        B meson
508 >        // 19        light baryon
509 >        // 20        strange baryon
510 >        // 21        charm baryon
511 >        // 22        bottom baryon
512 >        // 23        QCD string
513 >        // 24        other
514 >
515 >        vector<TString> labelArray;
516 >        labelArray.push_back("unmatched");
517 >        labelArray.push_back("u");
518 >        labelArray.push_back("d");
519 >        labelArray.push_back("s");
520 >        labelArray.push_back("c");
521 >        labelArray.push_back("b");
522 >        labelArray.push_back("t");
523 >        labelArray.push_back("e");
524 >        labelArray.push_back("#mu");
525 >        labelArray.push_back("#tau");
526 >        labelArray.push_back("#nu");
527 >        labelArray.push_back("g");
528 >        labelArray.push_back("#gamma");
529 >        labelArray.push_back("Z");
530 >        labelArray.push_back("W");
531 >        labelArray.push_back("light meson");
532 >        labelArray.push_back("K meson");
533 >        labelArray.push_back("D meson");
534 >        labelArray.push_back("B meson");
535 >        labelArray.push_back("light baryon");
536 >        labelArray.push_back("strange baryon");
537 >        labelArray.push_back("charm baryon");
538 >        labelArray.push_back("bottom baryon");
539 >        labelArray.push_back("QCD string");
540 >        labelArray.push_back("other");
541 >
542 >        for(int bin = 0; bin !=currentHistogram.bins.at(0); bin++){
543 >          if(currentHistogram.name.find("GenMatchIdVsMotherId")==string::npos && currentHistogram.name.find("GenMatchIdVsGrandmotherId")==string::npos) {
544 >            oneDHists_.at(currentChannel).at(currentDir)[currentHistogram.name]->GetXaxis()->SetBinLabel(bin+1,labelArray.at(bin));
545            }
546 <      }
547 <      else if(numBinsElements == 6){
548 <        if (currentHistogram.bins.size () == 6)
549 <          twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name] = directories.at(currentDir).make<TH2D> (TString(currentHistogram.name),channelLabel+" channel: "+currentHistogram.title, currentHistogram.bins.at(0), currentHistogram.bins.at(1), currentHistogram.bins.at(2),currentHistogram.bins.at(3),currentHistogram.bins.at(4),currentHistogram.bins.at(5));
550 <        else
551 <          twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name] = directories.at(currentDir).make<TH2D> (TString(currentHistogram.name),channelLabel+" channel: "+currentHistogram.title, numBinEdgesX - 1, currentHistogram.variableBinsX.data (), numBinEdgesY - 1, currentHistogram.variableBinsY.data ());
552 <      }
546 >          else {
547 >            twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name]->GetYaxis()->SetBinLabel(bin+1,labelArray.at(currentHistogram.bins.at(0)-bin-1));
548 >            twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name]->GetXaxis()->SetBinLabel(bin+1,labelArray.at(bin));
549 >          }
550 >        }
551 >        if(currentHistogram.name.find("GenMatchIdVsMotherId")!=string::npos || currentHistogram.name.find("GenMatchIdVsGrandmotherId")!=string::npos) {
552 >          twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name]->GetXaxis()->CenterTitle();
553 >          twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name]->GetYaxis()->CenterTitle();
554 >        }
555  
556 +      }  // end      for(uint currentHistogramIndex = 0; currentHistogramIndex != histograms.size(); currentHistogramIndex++)
557  
405      if(currentHistogram.name.find("GenMatch")==string::npos) continue;
558  
559 <      // bin      particle type
560 <      // ---      -------------
561 <      //  0        unmatched
562 <      //  1        u
563 <      //  2        d
564 <      //  3        s
565 <      //  4        c
566 <      //  5        b
567 <      //  6        t
568 <      //  7        e
569 <      //  8        mu
570 <      //  9        tau
571 <      // 10        nu
572 <      // 11        g
573 <      // 12        gamma
574 <      // 13        Z
575 <      // 14        W
576 <      // 15        light meson
577 <      // 16        K meson
578 <      // 17        D meson
579 <      // 18        B meson
580 <      // 19        light baryon
581 <      // 20        strange baryon
582 <      // 21        charm baryon
583 <      // 22        bottom baryon
584 <      // 23        QCD string
585 <      // 24        other
586 <
587 <      vector<TString> labelArray;
588 <      labelArray.push_back("unmatched");
589 <      labelArray.push_back("u");
590 <      labelArray.push_back("d");
591 <      labelArray.push_back("s");
592 <      labelArray.push_back("c");
593 <      labelArray.push_back("b");
594 <      labelArray.push_back("t");
595 <      labelArray.push_back("e");
596 <      labelArray.push_back("#mu");
597 <      labelArray.push_back("#tau");
598 <      labelArray.push_back("#nu");
599 <      labelArray.push_back("g");
600 <      labelArray.push_back("#gamma");
601 <      labelArray.push_back("Z");
602 <      labelArray.push_back("W");
603 <      labelArray.push_back("light meson");
604 <      labelArray.push_back("K meson");
605 <      labelArray.push_back("D meson");
454 <      labelArray.push_back("B meson");
455 <      labelArray.push_back("light baryon");
456 <      labelArray.push_back("strange baryon");
457 <      labelArray.push_back("charm baryon");
458 <      labelArray.push_back("bottom baryon");
459 <      labelArray.push_back("QCD string");
460 <      labelArray.push_back("other");
461 <
462 <      for(int bin = 0; bin !=currentHistogram.bins.at(0); bin++){
463 <        if(currentHistogram.name.find("GenMatchIdVsMotherId")==string::npos && currentHistogram.name.find("GenMatchIdVsGrandmotherId")==string::npos) {
464 <          oneDHists_.at(currentChannel).at(currentDir)[currentHistogram.name]->GetXaxis()->SetBinLabel(bin+1,labelArray.at(bin));
465 <        }
466 <        else {
467 <          twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name]->GetYaxis()->SetBinLabel(bin+1,labelArray.at(currentHistogram.bins.at(0)-bin-1));
468 <          twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name]->GetXaxis()->SetBinLabel(bin+1,labelArray.at(bin));
469 <        }
470 <      }
471 <      if(currentHistogram.name.find("GenMatchIdVsMotherId")!=string::npos || currentHistogram.name.find("GenMatchIdVsGrandmotherId")!=string::npos) {
472 <        twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name]->GetXaxis()->CenterTitle();
473 <        twoDHists_.at(currentChannel).at(currentDir)[currentHistogram.name]->GetYaxis()->CenterTitle();
474 <      }
475 <
476 <    }
477 <
478 <    // Book a histogram for the number of each object type to be plotted.
479 <    // Name of objectToPlot here must match the name specified in OSUAnalysis::analyze().
480 <    for (uint currentObjectIndex = 0; currentObjectIndex != objectsToPlot.size(); currentObjectIndex++){
481 <      string currentObject = objectsToPlot.at(currentObjectIndex);
482 <      int maxNum = 10;
483 <      if(currentObject == "mcparticles") maxNum = 50;
484 <      else if(currentObject == "primaryvertexs") maxNum = 50;
485 <
486 <      if(currentObject == "muon-muon pairs")                currentObject = "dimuonPairs";
487 <      else if(currentObject == "electron-electron pairs")   currentObject = "dielectronPairs";
488 <      else if(currentObject == "electron-muon pairs")       currentObject = "electronMuonPairs";
489 <      else if(currentObject == "secondary jets")            currentObject = "secondaryJets";
490 <      else if(currentObject == "jet-jet pairs")             currentObject = "dijetPairs";
491 <      else if(currentObject == "electron-jet pairs")        currentObject = "electronJetPairs";
492 <      else if(currentObject == "muon-jet pairs")            currentObject = "muonJetPairs";
493 <      else if(currentObject == "track-event pairs")         currentObject = "trackEventPairs";
494 <      else if(currentObject == "electron-track pairs")      currentObject = "electronTrackPairs";
495 <      else if(currentObject == "muon-track pairs")          currentObject = "muonTrackPairs";
496 <      else if(currentObject == "muon-tau pairs")            currentObject = "muonTauPairs";
497 <      else if(currentObject == "tau-tau pairs")             currentObject = "ditauPairs";
498 <      else if(currentObject == "tau-track pairs")           currentObject = "tauTrackPairs";
499 <      else if(currentObject == "muon-secondary muon pairs") currentObject = "muonSecondaryMuonPairs";
500 <      else if(currentObject == "secondary muons")           currentObject = "secondaryMuons";
501 <      else if(currentObject == "electron-secondary electron pairs") currentObject = "electronSecondaryElectronPairs";
502 <      else if(currentObject == "secondary electrons")       currentObject = "secondaryElectrons";
503 <      else if(currentObject == "electron-trigobj pairs")    currentObject = "electronTrigobjPairs";
504 <      else if(currentObject == "muon-trigobj pairs")        currentObject = "muonTrigobjPairs";
505 <
506 <      currentObject.at(0) = toupper(currentObject.at(0));
507 <      string histoName = "num" + currentObject;
508 <
509 <      if(histoName == "numPrimaryvertexs"){
510 <        string newHistoName = histoName + "BeforePileupCorrection";
511 <        oneDHists_.at(currentChannel).at(currentDir)[newHistoName] = directories.at(currentDir).make<TH1D> (TString(newHistoName),channelLabel+" channel: Number of Selected "+currentObject+" Before Pileup Correction; # "+currentObject, maxNum, 0, maxNum);
512 <        newHistoName = histoName + "AfterPileupCorrection";
513 <        oneDHists_.at(currentChannel).at(currentDir)[newHistoName] = directories.at(currentDir).make<TH1D> (TString(newHistoName),channelLabel+" channel: Number of Selected "+currentObject+ " After Pileup Correction; # "+currentObject, maxNum, 0, maxNum);
559 >      // Book a histogram for the number of each object type to be plotted.
560 >      // Name of objectToPlot here must match the name specified in OSUAnalysis::analyze().
561 >      for (uint currentObjectIndex = 0; currentObjectIndex != objectsToPlot.size(); currentObjectIndex++){
562 >        string currentObject = objectsToPlot.at(currentObjectIndex);
563 >        int maxNum = 10;
564 >        if(currentObject == "mcparticles") maxNum = 50;
565 >        else if(currentObject == "primaryvertexs") maxNum = 50;
566 >
567 >        if(currentObject == "muon-muon pairs")                currentObject = "dimuonPairs";
568 >        else if(currentObject == "electron-electron pairs")   currentObject = "dielectronPairs";
569 >        else if(currentObject == "electron-muon pairs")       currentObject = "electronMuonPairs";
570 >        else if(currentObject == "electron-photon pairs")     currentObject = "electronPhotonPairs";
571 >        else if(currentObject == "muon-photon pairs")         currentObject = "muonPhotonPairs";
572 >        else if(currentObject == "secondary jets")            currentObject = "secondaryJets";
573 >        else if(currentObject == "jet-jet pairs")             currentObject = "dijetPairs";
574 >        else if(currentObject == "jet-secondary jet pairs")   currentObject = "jetSecondaryJetPairs";
575 >        else if(currentObject == "electron-jet pairs")        currentObject = "electronJetPairs";
576 >        else if(currentObject == "muon-jet pairs")            currentObject = "muonJetPairs";
577 >        else if(currentObject == "photon-jet pairs")          currentObject = "photonJetPairs";
578 >        else if(currentObject == "met-jet pairs")             currentObject = "metJetPairs";
579 >        else if(currentObject == "muon-secondary jet pairs")  currentObject = "muonSecondaryJetPairs";
580 >        else if(currentObject == "photon-secondary jet pairs")  currentObject = "photonSecondaryJetPairs";
581 >        else if(currentObject == "electron-secondary jet pairs")  currentObject = "electronSecondaryJetPairs";
582 >        else if(currentObject == "track-event pairs")         currentObject = "trackEventPairs";
583 >        else if(currentObject == "electron-track pairs")      currentObject = "electronTrackPairs";
584 >        else if(currentObject == "muon-track pairs")          currentObject = "muonTrackPairs";
585 >        else if(currentObject == "muon-tau pairs")            currentObject = "muonTauPairs";
586 >        else if(currentObject == "tau-tau pairs")             currentObject = "ditauPairs";
587 >        else if(currentObject == "tau-track pairs")           currentObject = "tauTrackPairs";
588 >        else if(currentObject == "muon-secondary muon pairs") currentObject = "muonSecondaryMuonPairs";
589 >        else if(currentObject == "secondary muons")           currentObject = "secondaryMuons";
590 >        else if(currentObject == "electron-secondary electron pairs") currentObject = "electronSecondaryElectronPairs";
591 >        else if(currentObject == "secondary electrons")       currentObject = "secondaryElectrons";
592 >        else if(currentObject == "electron-trigobj pairs")    currentObject = "electronTrigobjPairs";
593 >        else if(currentObject == "muon-trigobj pairs")        currentObject = "muonTrigobjPairs";
594 >
595 >        currentObject.at(0) = toupper(currentObject.at(0));
596 >        string histoName = "num" + currentObject;
597 >
598 >        if(histoName == "numPrimaryvertexs"){
599 >          string newHistoName = histoName + "BeforePileupCorrection";
600 >          oneDHists_.at(currentChannel).at(currentDir)[newHistoName] = directories.at(currentDir).make<TH1D> (TString(newHistoName),channelLabel+" channel: Number of Selected "+currentObject+" Before Pileup Correction; # "+currentObject, maxNum, 0, maxNum);
601 >          newHistoName = histoName + "AfterPileupCorrection";
602 >          oneDHists_.at(currentChannel).at(currentDir)[newHistoName] = directories.at(currentDir).make<TH1D> (TString(newHistoName),channelLabel+" channel: Number of Selected "+currentObject+ " After Pileup Correction; # "+currentObject, maxNum, 0, maxNum);
603 >        }
604 >        else
605 >          oneDHists_.at(currentChannel).at(currentDir)[histoName] = directories.at(currentDir).make<TH1D> (TString(histoName),channelLabel+" channel: Number of Selected "+currentObject+"; # "+currentObject, maxNum, 0, maxNum);
606        }
607 <      else
516 <        oneDHists_.at(currentChannel).at(currentDir)[histoName] = directories.at(currentDir).make<TH1D> (TString(histoName),channelLabel+" channel: Number of Selected "+currentObject+"; # "+currentObject, maxNum, 0, maxNum);
517 <    }
518 <   }//end of loop over directories
607 >    }//end of loop over directories
608      channels.push_back(tempChannel);
609      tempChannel.cuts.clear();
610    }//end loop over channels
# Line 528 | Line 617 | OSUAnalysis::OSUAnalysis (const edm::Par
617    sort( objectsToCut.begin(), objectsToCut.end() );
618    objectsToCut.erase( unique( objectsToCut.begin(), objectsToCut.end() ), objectsToCut.end() );
619  
620 +  produces<map<string, bool> > ("channelDecisions");
621 +
622 + } // end constructor OSUAnalysis::OSUAnalysis()
623  
532 }
624  
625   OSUAnalysis::~OSUAnalysis ()
626   {
627 +
628    // Destroying the CutFlow objects causes the cut flow numbers and time
629    // information to be printed to standard output.
630    for(uint currentChannel = 0; currentChannel != channels_.size(); currentChannel++){
# Line 541 | Line 633 | OSUAnalysis::~OSUAnalysis ()
633   }
634  
635   void
636 < OSUAnalysis::analyze (const edm::Event &event, const edm::EventSetup &setup)
636 > OSUAnalysis::produce (edm::Event &event, const edm::EventSetup &setup)
637   {
546
638    // Retrieve necessary collections from the event.
639  
640    if (find(objectsToGet.begin(), objectsToGet.end(), "triggers") != objectsToGet.end())
# Line 608 | Line 699 | OSUAnalysis::analyze (const edm::Event &
699  
700    //get pile-up event weight
701    if (doPileupReweighting_ && datasetType_ != "data") {
702 <    if (events->at(0).numTruePV < 0) cout << "WARNING[OSUAnalysis::analyze]: Event has numTruePV<0.  This will give an incorrect pile-up weight." << endl;  
703 < else
704 <    masterScaleFactor *= puWeight_->at (events->at (0).numTruePV);  
702 >    //for "data" datasets, the numTruePV is always set to -1
703 >    if (events->at(0).numTruePV < 0) cout << "WARNING[OSUAnalysis::analyze]: Event has numTruePV<0.  Turning off pile-up reweighting." << endl;
704 >    else masterScaleFactor *= puWeight_->at (events->at (0).numTruePV);
705    }
706  
707    stopCTauScaleFactor_ = 1.0;
# Line 620 | Line 711 | else
711  
712    //loop over all channels
713  
714 +  auto_ptr<map<string, bool> > channelDecisions (new map<string, bool>);
715    for(uint currentChannelIndex = 0; currentChannelIndex != channels.size(); currentChannelIndex++){
716      channel currentChannel = channels.at(currentChannelIndex);
717  
# Line 627 | Line 719 | else
719      counterMap passingCounter;
720      cumulativeFlags.clear ();
721  
722 +    for (map<string, vector<float>>::iterator iter = BNTreeBranchVals_.begin();
723 +         iter != BNTreeBranchVals_.end(); iter++) {
724 +      iter->second.clear();  // clear array
725 +    }
726 +
727      bool triggerDecision = true;
728 <    if(currentChannel.triggers.size() != 0){  //triggers specified
729 <      triggerDecision = evaluateTriggers(currentChannel.triggers,triggers.product());
728 >    if(currentChannel.triggers.size() != 0 || currentChannel.triggersToVeto.size() != 0){  //triggers specified
729 >      triggerDecision = evaluateTriggers(currentChannel.triggers, currentChannel.triggersToVeto, triggers.product());
730        cutFlows_.at(currentChannelIndex)->at ("trigger") = triggerDecision;
731      }
732  
# Line 640 | Line 737 | else
737          string currentObject = objectsToCut.at(currentObjectIndex);
738  
739          //initialize maps to get ready to set cuts
740 <        individualFlags[currentObject].push_back (vector<bool> ());
741 <        cumulativeFlags[currentObject].push_back (vector<bool> ());
740 >        individualFlags[currentObject].push_back (vector<pair<bool,bool> > ());
741 >        cumulativeFlags[currentObject].push_back (vector<pair<bool,bool> > ());
742  
743        }
744        for(uint currentObjectIndex = 0; currentObjectIndex != objectsToCut.size(); currentObjectIndex++){
# Line 676 | Line 773 | else
773                                                                     "muon-muon pairs");
774  
775          else if(currentObject == "muon-secondary muon pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,muons.product(),muons.product(), \
776 <                                                                   cumulativeFlags.at("muons").at(flagsForPairCutsIndex), \
777 <                                                                   cumulativeFlags.at("secondary muons").at(flagsForPairCutsIndex), \
778 <                                                                   "muon-secondary muon pairs");
776 >                                                                             cumulativeFlags.at("muons").at(flagsForPairCutsIndex), \
777 >                                                                             cumulativeFlags.at("secondary muons").at(flagsForPairCutsIndex), \
778 >                                                                             "muon-secondary muon pairs");
779 >
780 >        else if(currentObject == "muon-secondary jet pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,muons.product(),jets.product(), \
781 >                                                                             cumulativeFlags.at("muons").at(flagsForPairCutsIndex), \
782 >                                                                             cumulativeFlags.at("secondary jets").at(flagsForPairCutsIndex), \
783 >                                                                             "muon-secondary jet pairs");
784 >        else if(currentObject == "photon-secondary jet pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,photons.product(),jets.product(), \
785 >                                                                             cumulativeFlags.at("photons").at(flagsForPairCutsIndex), \
786 >                                                                             cumulativeFlags.at("secondary jets").at(flagsForPairCutsIndex), \
787 >                                                                             "photon-secondary jet pairs");
788 >
789 >        else if(currentObject == "electron-secondary jet pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,electrons.product(),jets.product(), \
790 >                                                                             cumulativeFlags.at("electrons").at(flagsForPairCutsIndex), \
791 >                                                                             cumulativeFlags.at("secondary jets").at(flagsForPairCutsIndex), \
792 >                                                                             "electron-secondary jet pairs");
793  
794          else if(currentObject == "electron-secondary electron pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,electrons.product(),electrons.product(), \
795 <                                                                   cumulativeFlags.at("electrons").at(flagsForPairCutsIndex), \
796 <                                                                   cumulativeFlags.at("secondary electrons").at(flagsForPairCutsIndex), \
797 <                                                                   "electron-secondary electron pairs");
795 >                                                                                     cumulativeFlags.at("electrons").at(flagsForPairCutsIndex), \
796 >                                                                                     cumulativeFlags.at("secondary electrons").at(flagsForPairCutsIndex), \
797 >                                                                                     "electron-secondary electron pairs");
798  
799          else if(currentObject == "electron-electron pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,electrons.product(),electrons.product(), \
800                                                                             cumulativeFlags.at("electrons").at(flagsForPairCutsIndex), \
# Line 694 | Line 805 | else
805                                                                         cumulativeFlags.at("muons").at(flagsForPairCutsIndex), \
806                                                                         "electron-muon pairs");
807          else if(currentObject == "jet-jet pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,jets.product(),jets.product(), \
808 <                                                                           cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
809 <                                                                           cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
810 <                                                                           "jet-jet pairs");
808 >                                                                 cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
809 >                                                                 cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
810 >                                                                 "jet-jet pairs");
811 >        else if(currentObject == "jet-secondary jet pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,jets.product(),jets.product(), \
812 >                                                                 cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
813 >                                                                 cumulativeFlags.at("secondary jets").at(flagsForPairCutsIndex),\
814 >                                                                 "jet-secondary jet pairs");
815          else if(currentObject == "electron-jet pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,electrons.product(),jets.product(), \
816 <                                                                       cumulativeFlags.at("electrons").at(flagsForPairCutsIndex), \
817 <                                                                       cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
818 <                                                                       "electron-jet pairs");
816 >                                                                      cumulativeFlags.at("electrons").at(flagsForPairCutsIndex), \
817 >                                                                      cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
818 >                                                                      "electron-jet pairs");
819 >        else if(currentObject == "electron-photon pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,electrons.product(),photons.product(), \
820 >                                                                      cumulativeFlags.at("electrons").at(flagsForPairCutsIndex), \
821 >                                                                      cumulativeFlags.at("photons").at(flagsForPairCutsIndex), \
822 >                                                                      "electron-photon pairs");
823 >        else if(currentObject == "photon-jet pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,photons.product(),jets.product(), \
824 >                                                                      cumulativeFlags.at("photons").at(flagsForPairCutsIndex), \
825 >                                                                      cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
826 >                                                                      "photon-jet pairs");
827          else if(currentObject == "muon-jet pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,muons.product(),jets.product(), \
828 <                                                                       cumulativeFlags.at("muons").at(flagsForPairCutsIndex), \
829 <                                                                       cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
830 <                                                                       "muon-jet pairs");
828 >                                                                  cumulativeFlags.at("muons").at(flagsForPairCutsIndex), \
829 >                                                                  cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
830 >                                                                  "muon-jet pairs");
831 >        else if(currentObject == "met-jet pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,muons.product(),jets.product(), \
832 >                                                                  cumulativeFlags.at("mets").at(flagsForPairCutsIndex), \
833 >                                                                  cumulativeFlags.at("jets").at(flagsForPairCutsIndex), \
834 >                                                                  "met-jet pairs");
835 >        else if(currentObject == "muon-photon pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,muons.product(),photons.product(), \
836 >                                                                  cumulativeFlags.at("muons").at(flagsForPairCutsIndex), \
837 >                                                                  cumulativeFlags.at("photons").at(flagsForPairCutsIndex), \
838 >                                                                  "muon-photon pairs");
839          else if(currentObject == "track-event pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,tracks.product(),events.product(),
840                                                                       cumulativeFlags.at("tracks").at(flagsForPairCutsIndex),
841                                                                       cumulativeFlags.at("events").at(flagsForPairCutsIndex),
# Line 726 | Line 857 | else
857                                                                   cumulativeFlags.at("taus").at(flagsForPairCutsIndex),
858                                                                   "tau-tau pairs");
859          else if(currentObject == "tau-track pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,taus .product(),tracks.product(),
860 <                                                                 cumulativeFlags.at("taus").at(flagsForPairCutsIndex),
861 <                                                                 cumulativeFlags.at("tracks").at(flagsForPairCutsIndex),
862 <                                                                 "tau-track pairs");
860 >                                                                   cumulativeFlags.at("taus").at(flagsForPairCutsIndex),
861 >                                                                   cumulativeFlags.at("tracks").at(flagsForPairCutsIndex),
862 >                                                                   "tau-track pairs");
863          else if(currentObject == "electron-trigobj pairs") setObjectFlags(currentCut,currentCutIndex,individualFlags,cumulativeFlags,electrons.product(),trigobjs.product(),
864                                                                            cumulativeFlags.at("electrons").at(flagsForPairCutsIndex),
865                                                                            cumulativeFlags.at("trigobjs").at(flagsForPairCutsIndex),
# Line 746 | Line 877 | else
877      }//end loop over all cuts
878      //use cumulative flags to apply cuts at event level
879  
749    bool eventPassedAllCuts = true;
880      //a vector to store cumulative cut descisions after each cut.
881      vector<bool> eventPassedPreviousCuts;
882 +    bool eventPassedAllCuts = true;
883      //apply trigger (true if none were specified)
884      eventPassedAllCuts = eventPassedAllCuts && triggerDecision;
885  
755
886      for(uint currentCutIndex = 0; currentCutIndex != currentChannel.cuts.size(); currentCutIndex++){
887  
888        //loop over all objects and count how many passed the cumulative selection up to this point
# Line 760 | Line 890 | else
890        int numberPassing = 0;
891  
892        for (uint object = 0; object != cumulativeFlags.at(currentCut.inputCollection).at(currentCutIndex).size() ; object++){
893 <        if(cumulativeFlags.at(currentCut.inputCollection).at(currentCutIndex).at(object)) numberPassing++;
893 >        if(cumulativeFlags.at(currentCut.inputCollection).at(currentCutIndex).at(object).first) numberPassing++;
894        }
895        bool cutDecision = evaluateComparison(numberPassing,currentCut.eventComparativeOperator,currentCut.numberRequired);
896        cutFlows_.at(currentChannelIndex)->at (currentCut.name) = cutDecision;
# Line 769 | Line 899 | else
899      }
900      double scaleFactor = masterScaleFactor;
901  
902 <    muonScaleFactor_ = electronScaleFactor_ = 1.0;
902 >    muonScaleFactor_ = electronScaleFactor_ = bTagScaleFactor_ = 1.0;
903      if(applyLeptonSF_ && datasetType_ != "data"){
904        if(cumulativeFlags.find ("muons") != cumulativeFlags.end ()){
905 <        vector<bool> muonFlags;
905 >        flagPair muonFlags;
906          for (int i = cumulativeFlags.at("muons").size() - 1; i >= 0; i--){
907            if (cumulativeFlags.at("muons").at(i).size()){
908              muonFlags = cumulativeFlags.at("muons").at(i);
# Line 780 | Line 910 | else
910            }
911          }
912          for (uint muonIndex = 0; muonIndex != muonFlags.size(); muonIndex++){
913 <          if(!muonFlags.at(muonIndex)) continue;
913 >          if(!muonFlags.at(muonIndex).second) continue;
914            muonScaleFactor_ *= muonSFWeight_->at (muons->at(muonIndex).eta);
915          }
916        }
917        if(cumulativeFlags.find ("electrons") != cumulativeFlags.end ()){
918 <        vector<bool> electronFlags;
918 >        flagPair electronFlags;
919          for (int i = cumulativeFlags.at("electrons").size() - 1; i >= 0; i--){
920            if (cumulativeFlags.at("electrons").at(i).size()){
921              electronFlags = cumulativeFlags.at("electrons").at(i);
# Line 793 | Line 923 | else
923            }
924          }
925          for (uint electronIndex = 0; electronIndex != electronFlags.size(); electronIndex++){
926 <          if(!electronFlags.at(electronIndex)) continue;
926 >          if(!electronFlags.at(electronIndex).second) continue;
927            electronScaleFactor_ *= electronSFWeight_->at (electrons->at(electronIndex).eta, electrons->at(electronIndex).pt);
928          }
929        }
930      }
931 +    if(applyBtagSF_ && datasetType_ != "data"){
932 +     if(cumulativeFlags.find ("jets") != cumulativeFlags.end ()){
933 +       flagPair jetFlags;
934 +        vector<double> jetSFs;
935 +        for (int i = cumulativeFlags.at("jets").size() - 1; i >= 0; i--){
936 +          if (cumulativeFlags.at("jets").at(i).size()){
937 +            jetFlags = cumulativeFlags.at("jets").at(i);
938 +            break;
939 +          }
940 +        }
941 +        for (uint jetIndex = 0; jetIndex != jetFlags.size(); jetIndex++){
942 +          if(!jetFlags.at(jetIndex).second) continue;
943 +          double jetSFTmp = bTagSFWeight_->sflookup(jets->at(jetIndex).btagCombinedSecVertex, jets->at(jetIndex).pt, jets->at(jetIndex).flavour);
944 +          jetSFs.push_back(jetSFTmp);
945 +        }
946 +        bTagScaleFactor_ *= bTagSFWeight_->weight( jetSFs, minBtag_, maxBtag_ );
947 +      }
948 +    }
949      scaleFactor *= muonScaleFactor_;
950      scaleFactor *= electronScaleFactor_;
951 <
951 >    scaleFactor *= bTagScaleFactor_;
952      cutFlows_.at(currentChannelIndex)->fillCutFlow(scaleFactor);
805    if(!(GetPlotsAfterEachCut_ || eventPassedAllCuts)) continue;
953  
954      if (printEventInfo_) {
955        // Write information about event to screen, for testing purposes.
# Line 812 | Line 959 | else
959             << "  event=" << events->at(0).evt
960             << endl;
961      }
962 +
963 +
964      //filling histograms
965      for(uint currentCut = 0; currentCut != oneDHists_.at(currentChannelIndex).size(); currentCut++){//loop over all the directories in each channel.
966 <        uint currentDir;
967 <        if(!GetPlotsAfterEachCut_){ currentDir =  currentChannel.cuts.size() - oneDHists_.at(currentChannelIndex).size();}//if GetPlotsAfterEachCut_ is true, set currentDir point to the lat cut.
968 <        else{
969 <          currentDir = currentCut;
970 <        }
971 <        if(eventPassedPreviousCuts.at(currentDir)){
966 >      uint currentDir;
967 >      if (!GetPlotsAfterEachCut_) { currentDir =  currentChannel.cuts.size() - oneDHists_.at(currentChannelIndex).size(); } //if GetPlotsAfterEachCut_ is false, set currentDir point to the last cut.
968 >      else{
969 >        currentDir = currentCut;
970 >      }
971 >
972 >
973 >      if(eventPassedPreviousCuts.at(currentDir)){
974 >
975          for (uint histogramIndex = 0; histogramIndex != histograms.size(); histogramIndex++){
976            histogram currentHistogram = histograms.at(histogramIndex);
977  
978 <      if(currentHistogram.inputVariables.size() == 1){
827 <        TH1D* histo;
828 <        histo = oneDHists_.at(currentChannelIndex).at(currentCut).at(currentHistogram.name);
829 <        if     (currentHistogram.inputCollection == "jets")            fill1DHistogram(histo,currentHistogram,jets.product(),cumulativeFlags.at("jets").at(currentDir),scaleFactor);
830 <        else if(currentHistogram.inputCollection == "secondary jets")  fill1DHistogram(histo,currentHistogram,jets.product(),cumulativeFlags.at("secondary jets").at(currentDir),scaleFactor);
831 <        else if(currentHistogram.inputCollection == "muons")           fill1DHistogram(histo,currentHistogram,muons.product(),cumulativeFlags.at("muons").at(currentDir),scaleFactor);
832 <        else if(currentHistogram.inputCollection == "secondary muons") fill1DHistogram(histo,currentHistogram,muons.product(),cumulativeFlags.at("secondary muons").at(currentDir),scaleFactor);
833 <        else if(currentHistogram.inputCollection == "secondary electrons") fill1DHistogram(histo,currentHistogram,electrons.product(),cumulativeFlags.at("secondary electrons").at(currentDir),scaleFactor);
834 <        else if(currentHistogram.inputCollection == "muon-muon pairs") fill1DHistogram(histo,currentHistogram,muons.product(),muons.product(), \
835 <                                                                                       cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("muons").at(currentDir), \
836 <                                                                                       cumulativeFlags.at("muon-muon pairs").at(currentDir),scaleFactor);
837 <        else if(currentHistogram.inputCollection == "muon-secondary muon pairs") fill1DHistogram(histo,currentHistogram,muons.product(),muons.product(), \
838 <                                                                                       cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("secondary muons").at(currentDir), \
839 <                                                                                       cumulativeFlags.at("muon-secondary muon pairs").at(currentDir),scaleFactor);
840 <        else if(currentHistogram.inputCollection == "electrons") fill1DHistogram(histo,currentHistogram,electrons.product(),cumulativeFlags.at("electrons").at(currentDir),scaleFactor);
841 <        else if(currentHistogram.inputCollection == "electron-electron pairs") fill1DHistogram(histo,currentHistogram,electrons.product(),electrons.product(),\
842 <                                                                                               cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("electrons").at(currentDir),\
843 <                                                                                               cumulativeFlags.at("electron-electron pairs").at(currentDir),scaleFactor);
844 <        else if(currentHistogram.inputCollection == "jet-jet pairs") fill1DHistogram(histo,currentHistogram,jets.product(),jets.product(),\
845 <                                                                                               cumulativeFlags.at("jets").at(currentDir),cumulativeFlags.at("jets").at(currentDir),\
846 <                                                                                               cumulativeFlags.at("jet-jet pairs").at(currentDir),scaleFactor);
847 <        else if(currentHistogram.inputCollection == "electron-secondary electron pairs") fill1DHistogram(histo,currentHistogram,electrons.product(),electrons.product(), \
848 <                                                                                       cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("secondary electrons").at(currentDir), \
849 <                                                                                       cumulativeFlags.at("electron-secondary electron pairs").at(currentDir),scaleFactor);
850 <        else if(currentHistogram.inputCollection == "electron-muon pairs") fill1DHistogram(histo,currentHistogram, electrons.product(),muons.product(), \
851 <                                                                                           cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("muons").at(currentDir),
852 <                                                                                           cumulativeFlags.at("electron-muon pairs").at(currentDir),scaleFactor);
853 <        else if(currentHistogram.inputCollection == "electron-jet pairs") fill1DHistogram(histo,currentHistogram, electrons.product(),jets.product(), \
854 <                                                                                           cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("jets").at(currentDir),
855 <                                                                                           cumulativeFlags.at("electron-jet pairs").at(currentDir),scaleFactor);
856 <        else if(currentHistogram.inputCollection == "muon-jet pairs") fill1DHistogram(histo,currentHistogram, muons.product(),jets.product(), \
857 <                                                                                           cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("jets").at(currentDir),
858 <                                                                                           cumulativeFlags.at("muon-jet pairs").at(currentDir),scaleFactor);
859 <        else if(currentHistogram.inputCollection == "electron-track pairs") fill1DHistogram(histo,currentHistogram, electrons.product(),tracks.product(),
860 <                                                                                            cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
861 <                                                                                            cumulativeFlags.at("electron-track pairs").at(currentDir),scaleFactor);
862 <        else if(currentHistogram.inputCollection == "muon-track pairs") fill1DHistogram(histo,currentHistogram, muons.product(),tracks.product(),
863 <                                                                                        cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
864 <                                                                                        cumulativeFlags.at("muon-track pairs").at(currentDir),scaleFactor);
865 <        else if(currentHistogram.inputCollection == "muon-tau pairs") fill1DHistogram(histo,currentHistogram, muons.product(),taus.product(),
866 <                                                                                      cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("taus").at(currentDir),
867 <                                                                                      cumulativeFlags.at("muon-tau pairs").at(currentDir),scaleFactor);
868 <        else if(currentHistogram.inputCollection == "tau-tau pairs") fill1DHistogram(histo,currentHistogram, taus.product(),taus.product(),
869 <                                                                                     cumulativeFlags.at("taus").at(currentDir),cumulativeFlags.at("taus").at(currentDir),
870 <                                                                                     cumulativeFlags.at("tau-tau pairs").at(currentDir),scaleFactor);
871 <        else if(currentHistogram.inputCollection == "tau-track pairs") fill1DHistogram(histo,currentHistogram, taus.product(),tracks.product(),
872 <                                                                                     cumulativeFlags.at("taus").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
873 <                                                                                     cumulativeFlags.at("tau-track pairs").at(currentDir),scaleFactor);
874 <        else if(currentHistogram.inputCollection == "electron-trigobj pairs") fill1DHistogram(histo,currentHistogram, electrons.product(),trigobjs.product(),
875 <                                                                                              cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("trigobjs").at(currentDir),
876 <                                                                                              cumulativeFlags.at("electron-trigobj pairs").at(currentDir),scaleFactor);
877 <        else if(currentHistogram.inputCollection == "muon-trigobj pairs") fill1DHistogram(histo,currentHistogram, muons.product(),trigobjs.product(),
878 <                                                                                          cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("trigobjs").at(currentDir),
879 <                                                                                          cumulativeFlags.at("muon-trigobj pairs").at(currentDir),scaleFactor);
880 <
881 <        else if(currentHistogram.inputCollection == "events") fill1DHistogram(histo,currentHistogram,events.product(),cumulativeFlags.at("events").at(currentDir),scaleFactor);
882 <        else if(currentHistogram.inputCollection == "taus") fill1DHistogram(histo,currentHistogram,taus.product(),cumulativeFlags.at("taus").at(currentDir),scaleFactor);
883 <        else if(currentHistogram.inputCollection == "mets") fill1DHistogram(histo,currentHistogram,mets.product(),cumulativeFlags.at("mets").at(currentDir),scaleFactor);
884 <        else if(currentHistogram.inputCollection == "tracks") fill1DHistogram(histo,currentHistogram,tracks.product(),cumulativeFlags.at("tracks").at(currentDir),scaleFactor);
885 <        else if(currentHistogram.inputCollection == "genjets") fill1DHistogram(histo,currentHistogram,genjets.product(),cumulativeFlags.at("genjets").at(currentDir),scaleFactor);
886 <        else if(currentHistogram.inputCollection == "mcparticles") fill1DHistogram(histo,currentHistogram,mcparticles.product(),cumulativeFlags.at("mcparticles").at(currentDir),scaleFactor);
887 <        else if(currentHistogram.inputCollection == "primaryvertexs") fill1DHistogram(histo,currentHistogram,primaryvertexs.product(),cumulativeFlags.at("primaryvertexs").at(currentDir),scaleFactor);
888 <        else if(currentHistogram.inputCollection == "bxlumis") fill1DHistogram(histo,currentHistogram,bxlumis.product(),cumulativeFlags.at("bxlumis").at(currentDir),scaleFactor);
889 <        else if(currentHistogram.inputCollection == "photons") fill1DHistogram(histo,currentHistogram,photons.product(),cumulativeFlags.at("photons").at(currentDir),scaleFactor);
890 <        else if(currentHistogram.inputCollection == "superclusters") fill1DHistogram(histo,currentHistogram,superclusters.product(),cumulativeFlags.at("superclusters").at(currentDir),scaleFactor);
891 <        else if(currentHistogram.inputCollection == "trigobjs") fill1DHistogram(histo,currentHistogram,trigobjs.product(),cumulativeFlags.at("trigobjs").at(currentDir),scaleFactor);
892 <        else if(currentHistogram.inputCollection == "stops" && datasetType_ == "signalMC") fill1DHistogram(histo,currentHistogram,stops.product(),cumulativeFlags.at("stops").at(currentDir),scaleFactor);
893 <      }
894 <      else if(currentHistogram.inputVariables.size() == 2){
895 <        TH2D* histo;
896 <        histo = twoDHists_.at(currentChannelIndex).at(currentCut).at(currentHistogram.name);
897 <        if     (currentHistogram.inputCollection == "jets")            fill2DHistogram(histo,currentHistogram,jets.product(),cumulativeFlags.at("jets").at(currentDir),scaleFactor);
898 <        else if(currentHistogram.inputCollection == "secondary jets")  fill2DHistogram(histo,currentHistogram,jets.product(),cumulativeFlags.at("secondary jets").at(currentDir),scaleFactor);
899 <        else if(currentHistogram.inputCollection == "muons")           fill2DHistogram(histo,currentHistogram,muons.product(),cumulativeFlags.at("muons").at(currentDir),scaleFactor);
900 <        else if(currentHistogram.inputCollection == "secondary muons") fill2DHistogram(histo,currentHistogram,muons.product(),cumulativeFlags.at("secondary muons").at(currentDir),scaleFactor);
901 <        else if(currentHistogram.inputCollection == "muon-muon pairs") fill2DHistogram(histo,currentHistogram,muons.product(),muons.product(), \
902 <                                                                                       cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("muons").at(currentDir), \
903 <                                                                                       cumulativeFlags.at("muon-muon pairs").at(currentDir),scaleFactor);
904 <        else if(currentHistogram.inputCollection == "muon-secondary muon pairs") fill2DHistogram(histo,currentHistogram,muons.product(),muons.product(), \
905 <                                                                                       cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("secondary muons").at(currentDir), \
906 <                                                                                       cumulativeFlags.at("muon-secondary muon pairs").at(currentDir),scaleFactor);
907 <        else if(currentHistogram.inputCollection == "electrons") fill2DHistogram(histo,currentHistogram,electrons.product(),cumulativeFlags.at("electrons").at(currentDir),scaleFactor);
908 <        else if(currentHistogram.inputCollection == "secondary electrons") fill2DHistogram(histo,currentHistogram,electrons.product(),cumulativeFlags.at("secondary electrons").at(currentDir),scaleFactor);
909 <        else if(currentHistogram.inputCollection == "electron-electron pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),electrons.product(), \
910 <                                                                                               cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("electrons").at(currentDir), \
911 <                                                                                               cumulativeFlags.at("electron-electron pairs").at(currentDir),scaleFactor);
912 <        else if(currentHistogram.inputCollection == "jet-jet pairs") fill2DHistogram(histo,currentHistogram,jets.product(),jets.product(), \
913 <                                                                                               cumulativeFlags.at("jets").at(currentDir),cumulativeFlags.at("jets").at(currentDir), \
914 <                                                                                               cumulativeFlags.at("jet-jet pairs").at(currentDir),scaleFactor);
915 <        else if(currentHistogram.inputCollection == "electron-secondary electron pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),electrons.product(), \
916 <                                                                                       cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("secondary electrons").at(currentDir), \
917 <                                                                                       cumulativeFlags.at("electron-secondary electron pairs").at(currentDir),scaleFactor);
918 <        else if(currentHistogram.inputCollection == "electron-muon pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),muons.product(), \
919 <                                                                                           cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("muons").at(currentDir), \
920 <                                                                                           cumulativeFlags.at("electron-muon pairs").at(currentDir),scaleFactor);
921 <        else if(currentHistogram.inputCollection == "electron-jet pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),jets.product(), \
922 <                                                                                           cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("jets").at(currentDir), \
923 <                                                                                           cumulativeFlags.at("electron-jet pairs").at(currentDir),scaleFactor);
924 <        else if(currentHistogram.inputCollection == "muon-jet pairs") fill2DHistogram(histo,currentHistogram,muons.product(),jets.product(), \
925 <                                                                                           cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("jets").at(currentDir), \
926 <                                                                                           cumulativeFlags.at("muon-jet pairs").at(currentDir),scaleFactor);
927 <        else if(currentHistogram.inputCollection == "electron-track pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),tracks.product(),
928 <                                                                                            cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
929 <                                                                                            cumulativeFlags.at("electron-track pairs").at(currentDir),scaleFactor);
930 <        else if(currentHistogram.inputCollection == "muon-track pairs") fill2DHistogram(histo,currentHistogram,muons.product(),tracks.product(),
931 <                                                                                        cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
932 <                                                                                        cumulativeFlags.at("muon-track pairs").at(currentDir),scaleFactor);
933 <        else if(currentHistogram.inputCollection == "muon-tau pairs") fill2DHistogram(histo,currentHistogram,muons.product(),taus.product(),
934 <                                                                                      cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("taus").at(currentDir),
935 <                                                                                      cumulativeFlags.at("muon-tau pairs").at(currentDir),scaleFactor);
936 <        else if(currentHistogram.inputCollection == "tau-tau pairs") fill2DHistogram(histo,currentHistogram,taus.product(),taus.product(),
937 <                                                                                     cumulativeFlags.at("taus").at(currentDir),cumulativeFlags.at("taus").at(currentDir),
938 <                                                                                     cumulativeFlags.at("tau-tau pairs").at(currentDir),scaleFactor);
939 <        else if(currentHistogram.inputCollection == "tau-track pairs") fill2DHistogram(histo,currentHistogram,taus.product(),tracks.product(),
940 <                                                                                     cumulativeFlags.at("taus").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
941 <                                                                                     cumulativeFlags.at("tau-track pairs").at(currentDir),scaleFactor);
942 <        else if(currentHistogram.inputCollection == "electron-trigobj pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),trigobjs.product(),
943 <                                                                                              cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("trigobjs").at(currentDir),
944 <                                                                                              cumulativeFlags.at("electron-trigobj pairs").at(currentDir),scaleFactor);
945 <        else if(currentHistogram.inputCollection == "muon-trigobj pairs") fill2DHistogram(histo,currentHistogram,muons.product(),trigobjs.product(),
946 <                                                                                          cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("trigobjs").at(currentDir),
947 <                                                                                          cumulativeFlags.at("muon-trigobj pairs").at(currentDir),scaleFactor);
948 <        else if(currentHistogram.inputCollection == "events") fill2DHistogram(histo,currentHistogram,events.product(),cumulativeFlags.at("events").at(currentDir),scaleFactor);
949 <        else if(currentHistogram.inputCollection == "taus") fill2DHistogram(histo,currentHistogram,taus.product(),cumulativeFlags.at("taus").at(currentDir),scaleFactor);
950 <        else if(currentHistogram.inputCollection == "mets") fill2DHistogram(histo,currentHistogram,mets.product(),cumulativeFlags.at("mets").at(currentDir),scaleFactor);
951 <        else if(currentHistogram.inputCollection == "tracks") fill2DHistogram(histo,currentHistogram,tracks.product(),cumulativeFlags.at("tracks").at(currentDir),scaleFactor);
952 <        else if(currentHistogram.inputCollection == "track-event pairs") fill2DHistogram(histo,currentHistogram,tracks.product(),events.product(),
953 <                                                                                         cumulativeFlags.at("tracks").at(currentDir),cumulativeFlags.at("events").at(currentDir),
954 <                                                                                         cumulativeFlags.at("track-event pairs").at(currentDir),scaleFactor);
955 <        else if(currentHistogram.inputCollection == "genjets") fill2DHistogram(histo,currentHistogram,genjets.product(),cumulativeFlags.at("genjets").at(currentDir),scaleFactor);
956 <        else if(currentHistogram.inputCollection == "mcparticles") fill2DHistogram(histo,currentHistogram,mcparticles.product(),cumulativeFlags.at("mcparticles").at(currentDir),scaleFactor);
957 <        else if(currentHistogram.inputCollection == "primaryvertexs") fill2DHistogram(histo,currentHistogram,primaryvertexs.product(),cumulativeFlags.at("primaryvertexs").at(currentDir),scaleFactor);
958 <        else if(currentHistogram.inputCollection == "bxlumis") fill2DHistogram(histo,currentHistogram,bxlumis.product(),cumulativeFlags.at("bxlumis").at(currentDir),scaleFactor);
959 <        else if(currentHistogram.inputCollection == "photons") fill2DHistogram(histo,currentHistogram,photons.product(),cumulativeFlags.at("photons").at(currentDir),scaleFactor);
960 <        else if(currentHistogram.inputCollection == "superclusters") fill2DHistogram(histo,currentHistogram,superclusters.product(),cumulativeFlags.at("superclusters").at(currentDir),scaleFactor);
961 <        else if(currentHistogram.inputCollection == "trigobjs") fill2DHistogram(histo,currentHistogram,trigobjs.product(),cumulativeFlags.at("trigobjs").at(currentDir),scaleFactor);
962 <        else if(currentHistogram.inputCollection == "stops" && datasetType_ == "signalMC") fill2DHistogram(histo,currentHistogram,stops.product(),cumulativeFlags.at("stops").at(currentDir),scaleFactor);
963 <      }
964 <    }
978 >          if (cumulativeFlags.count(currentHistogram.inputCollection) == 0) cout << "Error: no flags found for collection:  " << currentHistogram.inputCollection << ", will cause a seg fault" << endl;
979  
980 +          if(currentHistogram.inputVariables.size() == 1){
981 +            TH1D* histo;
982 +            histo = oneDHists_.at(currentChannelIndex).at(currentCut).at(currentHistogram.name);
983 +            if     (currentHistogram.inputCollection == "jets")            fill1DHistogram(histo,currentHistogram,jets.product(),cumulativeFlags.at("jets").at(currentDir),scaleFactor);
984 +            else if(currentHistogram.inputCollection == "secondary jets")  fill1DHistogram(histo,currentHistogram,jets.product(),cumulativeFlags.at("secondary jets").at(currentDir),scaleFactor);
985 +            else if(currentHistogram.inputCollection == "muons")           fill1DHistogram(histo,currentHistogram,muons.product(),cumulativeFlags.at("muons").at(currentDir),scaleFactor);
986 +            else if(currentHistogram.inputCollection == "secondary muons") fill1DHistogram(histo,currentHistogram,muons.product(),cumulativeFlags.at("secondary muons").at(currentDir),scaleFactor);
987 +            else if(currentHistogram.inputCollection == "secondary electrons") fill1DHistogram(histo,currentHistogram,electrons.product(),cumulativeFlags.at("secondary electrons").at(currentDir),scaleFactor);
988 +            else if(currentHistogram.inputCollection == "muon-muon pairs") fill1DHistogram(histo,currentHistogram,muons.product(),muons.product(), \
989 +                                                                                           cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("muons").at(currentDir), \
990 +                                                                                           cumulativeFlags.at("muon-muon pairs").at(currentDir),scaleFactor);
991 +            else if(currentHistogram.inputCollection == "muon-secondary muon pairs") fill1DHistogram(histo,currentHistogram,muons.product(),muons.product(), \
992 +                                                                                                     cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("secondary muons").at(currentDir), \
993 +                                                                                                     cumulativeFlags.at("muon-secondary muon pairs").at(currentDir),scaleFactor);
994 +             else if(currentHistogram.inputCollection == "muon-secondary jet pairs") fill1DHistogram(histo,currentHistogram,muons.product(),jets.product(), \
995 +                                                                                                     cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("secondary jets").at(currentDir), \
996 +                                                                                                     cumulativeFlags.at("muon-secondary jet pairs").at(currentDir),scaleFactor);
997 +             else if(currentHistogram.inputCollection == "photon-secondary jet pairs") fill1DHistogram(histo,currentHistogram,photons.product(),jets.product(), \
998 +                                                                                                     cumulativeFlags.at("photons").at(currentDir),cumulativeFlags.at("secondary jets").at(currentDir), \
999 +                                                                                                     cumulativeFlags.at("photon-secondary jet pairs").at(currentDir),scaleFactor);
1000 +             else if(currentHistogram.inputCollection == "electron-secondary jet pairs") fill1DHistogram(histo,currentHistogram,electrons.product(),jets.product(), \
1001 +                                                                                                     cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("secondary jets").at(currentDir), \
1002 +                                                                                                     cumulativeFlags.at("electron-secondary jet pairs").at(currentDir),scaleFactor);
1003 +
1004 +            else if(currentHistogram.inputCollection == "electrons") fill1DHistogram(histo,currentHistogram,electrons.product(),cumulativeFlags.at("electrons").at(currentDir),scaleFactor);
1005 +            else if(currentHistogram.inputCollection == "electron-electron pairs") fill1DHistogram(histo,currentHistogram,electrons.product(),electrons.product(),\
1006 +                                                                                                   cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("electrons").at(currentDir),\
1007 +                                                                                                   cumulativeFlags.at("electron-electron pairs").at(currentDir),scaleFactor);
1008 +            else if(currentHistogram.inputCollection == "jet-jet pairs") fill1DHistogram(histo,currentHistogram,jets.product(),jets.product(),\
1009 +                                                                                         cumulativeFlags.at("jets").at(currentDir),cumulativeFlags.at("jets").at(currentDir),\
1010 +                                                                                         cumulativeFlags.at("jet-jet pairs").at(currentDir),scaleFactor);
1011 +             else if(currentHistogram.inputCollection == "jet-secondary jet pairs") fill1DHistogram(histo,currentHistogram,jets.product(),jets.product(), \
1012 +                                                                                                     cumulativeFlags.at("jets").at(currentDir),cumulativeFlags.at("secondary jets").at(currentDir), \
1013 +                                                                                                     cumulativeFlags.at("jet-secondary jet pairs").at(currentDir),scaleFactor);
1014 +
1015 +            else if(currentHistogram.inputCollection == "electron-secondary electron pairs") fill1DHistogram(histo,currentHistogram,electrons.product(),electrons.product(), \
1016 +                                                                                                             cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("secondary electrons").at(currentDir), \
1017 +                                                                                                             cumulativeFlags.at("electron-secondary electron pairs").at(currentDir),scaleFactor);
1018 +            else if(currentHistogram.inputCollection == "electron-muon pairs") fill1DHistogram(histo,currentHistogram, electrons.product(),muons.product(), \
1019 +                                                                                               cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("muons").at(currentDir),
1020 +                                                                                               cumulativeFlags.at("electron-muon pairs").at(currentDir),scaleFactor);
1021 +            else if(currentHistogram.inputCollection == "electron-jet pairs") fill1DHistogram(histo,currentHistogram, electrons.product(),jets.product(), \
1022 +                                                                                              cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("jets").at(currentDir),
1023 +                                                                                              cumulativeFlags.at("electron-jet pairs").at(currentDir),scaleFactor);
1024 +            else if(currentHistogram.inputCollection == "photon-jet pairs") fill1DHistogram(histo,currentHistogram, photons.product(),jets.product(), \
1025 +                                                                                              cumulativeFlags.at("photons").at(currentDir),cumulativeFlags.at("jets").at(currentDir),
1026 +                                                                                              cumulativeFlags.at("photon-jet pairs").at(currentDir),scaleFactor);
1027 +            else if(currentHistogram.inputCollection == "muon-jet pairs") fill1DHistogram(histo,currentHistogram, muons.product(),jets.product(), \
1028 +                                                                                          cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("jets").at(currentDir),
1029 +                                                                                          cumulativeFlags.at("muon-jet pairs").at(currentDir),scaleFactor);
1030 +            else if(currentHistogram.inputCollection == "met-jet pairs")  fill1DHistogram(histo,currentHistogram, muons.product(),jets.product(), \
1031 +                                                                                          cumulativeFlags.at("mets").at(currentDir),cumulativeFlags.at("jets").at(currentDir),
1032 +                                                                                          cumulativeFlags.at("met-jet pairs").at(currentDir),scaleFactor);
1033 +            else if(currentHistogram.inputCollection == "muon-photon pairs") fill1DHistogram(histo,currentHistogram, muons.product(),photons.product(), \
1034 +                                                                                          cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("photons").at(currentDir),
1035 +                                                                                          cumulativeFlags.at("muon-photon pairs").at(currentDir),scaleFactor);
1036 +            else if(currentHistogram.inputCollection == "electron-photon pairs") fill1DHistogram(histo,currentHistogram, electrons.product(),photons.product(), \
1037 +                                                                                          cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("photons").at(currentDir),
1038 +                                                                                          cumulativeFlags.at("electron-photon pairs").at(currentDir),scaleFactor);
1039 +            else if(currentHistogram.inputCollection == "electron-track pairs") fill1DHistogram(histo,currentHistogram, electrons.product(),tracks.product(),
1040 +                                                                                                cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
1041 +                                                                                                cumulativeFlags.at("electron-track pairs").at(currentDir),scaleFactor);
1042 +            else if(currentHistogram.inputCollection == "muon-track pairs") fill1DHistogram(histo,currentHistogram, muons.product(),tracks.product(),
1043 +                                                                                            cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
1044 +                                                                                            cumulativeFlags.at("muon-track pairs").at(currentDir),scaleFactor);
1045 +            else if(currentHistogram.inputCollection == "muon-tau pairs") fill1DHistogram(histo,currentHistogram, muons.product(),taus.product(),
1046 +                                                                                          cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("taus").at(currentDir),
1047 +                                                                                          cumulativeFlags.at("muon-tau pairs").at(currentDir),scaleFactor);
1048 +            else if(currentHistogram.inputCollection == "tau-tau pairs") fill1DHistogram(histo,currentHistogram, taus.product(),taus.product(),
1049 +                                                                                         cumulativeFlags.at("taus").at(currentDir),cumulativeFlags.at("taus").at(currentDir),
1050 +                                                                                         cumulativeFlags.at("tau-tau pairs").at(currentDir),scaleFactor);
1051 +            else if(currentHistogram.inputCollection == "tau-track pairs") fill1DHistogram(histo,currentHistogram, taus.product(),tracks.product(),
1052 +                                                                                           cumulativeFlags.at("taus").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
1053 +                                                                                           cumulativeFlags.at("tau-track pairs").at(currentDir),scaleFactor);
1054 +            else if(currentHistogram.inputCollection == "electron-trigobj pairs") fill1DHistogram(histo,currentHistogram, electrons.product(),trigobjs.product(),
1055 +                                                                                                  cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("trigobjs").at(currentDir),
1056 +                                                                                                  cumulativeFlags.at("electron-trigobj pairs").at(currentDir),scaleFactor);
1057 +            else if(currentHistogram.inputCollection == "muon-trigobj pairs") fill1DHistogram(histo,currentHistogram, muons.product(),trigobjs.product(),
1058 +                                                                                              cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("trigobjs").at(currentDir),
1059 +                                                                                              cumulativeFlags.at("muon-trigobj pairs").at(currentDir),scaleFactor);
1060 +
1061 +            else if(currentHistogram.inputCollection == "events") fill1DHistogram(histo,currentHistogram,events.product(),cumulativeFlags.at("events").at(currentDir),scaleFactor);
1062 +            else if(currentHistogram.inputCollection == "taus") fill1DHistogram(histo,currentHistogram,taus.product(),cumulativeFlags.at("taus").at(currentDir),scaleFactor);
1063 +            else if(currentHistogram.inputCollection == "mets") fill1DHistogram(histo,currentHistogram,mets.product(),cumulativeFlags.at("mets").at(currentDir),scaleFactor);
1064 +            else if(currentHistogram.inputCollection == "tracks") fill1DHistogram(histo,currentHistogram,tracks.product(),cumulativeFlags.at("tracks").at(currentDir),scaleFactor);
1065 +            else if(currentHistogram.inputCollection == "genjets") fill1DHistogram(histo,currentHistogram,genjets.product(),cumulativeFlags.at("genjets").at(currentDir),scaleFactor);
1066 +            else if(currentHistogram.inputCollection == "mcparticles") fill1DHistogram(histo,currentHistogram,mcparticles.product(),cumulativeFlags.at("mcparticles").at(currentDir),scaleFactor);
1067 +            else if(currentHistogram.inputCollection == "primaryvertexs") fill1DHistogram(histo,currentHistogram,primaryvertexs.product(),cumulativeFlags.at("primaryvertexs").at(currentDir),scaleFactor);
1068 +            else if(currentHistogram.inputCollection == "bxlumis") fill1DHistogram(histo,currentHistogram,bxlumis.product(),cumulativeFlags.at("bxlumis").at(currentDir),scaleFactor);
1069 +            else if(currentHistogram.inputCollection == "photons") fill1DHistogram(histo,currentHistogram,photons.product(),cumulativeFlags.at("photons").at(currentDir),scaleFactor);
1070 +            else if(currentHistogram.inputCollection == "superclusters") fill1DHistogram(histo,currentHistogram,superclusters.product(),cumulativeFlags.at("superclusters").at(currentDir),scaleFactor);
1071 +            else if(currentHistogram.inputCollection == "trigobjs") fill1DHistogram(histo,currentHistogram,trigobjs.product(),cumulativeFlags.at("trigobjs").at(currentDir),scaleFactor);
1072 +            else if(currentHistogram.inputCollection == "stops" && datasetType_ == "signalMC") fill1DHistogram(histo,currentHistogram,stops.product(),cumulativeFlags.at("stops").at(currentDir),scaleFactor);
1073 +          }
1074 +          else if(currentHistogram.inputVariables.size() == 2){
1075 +            TH2D* histo;
1076 +            histo = twoDHists_.at(currentChannelIndex).at(currentCut).at(currentHistogram.name);
1077 +            if     (currentHistogram.inputCollection == "jets")            fill2DHistogram(histo,currentHistogram,jets.product(),cumulativeFlags.at("jets").at(currentDir),scaleFactor);
1078 +            else if(currentHistogram.inputCollection == "secondary jets")  fill2DHistogram(histo,currentHistogram,jets.product(),cumulativeFlags.at("secondary jets").at(currentDir),scaleFactor);
1079 +            else if(currentHistogram.inputCollection == "muons")           fill2DHistogram(histo,currentHistogram,muons.product(),cumulativeFlags.at("muons").at(currentDir),scaleFactor);
1080 +            else if(currentHistogram.inputCollection == "secondary muons") fill2DHistogram(histo,currentHistogram,muons.product(),cumulativeFlags.at("secondary muons").at(currentDir),scaleFactor);
1081 +            else if(currentHistogram.inputCollection == "muon-muon pairs") fill2DHistogram(histo,currentHistogram,muons.product(),muons.product(), \
1082 +                                                                                           cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("muons").at(currentDir), \
1083 +                                                                                           cumulativeFlags.at("muon-muon pairs").at(currentDir),scaleFactor);
1084 +            else if(currentHistogram.inputCollection == "muon-secondary muon pairs") fill2DHistogram(histo,currentHistogram,muons.product(),muons.product(), \
1085 +                                                                                                     cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("secondary muons").at(currentDir), \
1086 +                                                                                                     cumulativeFlags.at("muon-secondary muon pairs").at(currentDir),scaleFactor);
1087 +            else if(currentHistogram.inputCollection == "muon-secondary jet pairs") fill2DHistogram(histo,currentHistogram,muons.product(),jets.product(), \
1088 +                                                                                                     cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("secondary jets").at(currentDir), \
1089 +                                                                                                     cumulativeFlags.at("muon-secondary jet pairs").at(currentDir),scaleFactor);
1090 +            else if(currentHistogram.inputCollection == "electron-secondary jet pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),jets.product(), \
1091 +                                                                                                     cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("secondary jets").at(currentDir), \
1092 +                                                                                                     cumulativeFlags.at("electron-secondary jet pairs").at(currentDir),scaleFactor);
1093 +            else if(currentHistogram.inputCollection == "photon-secondary jet pairs") fill2DHistogram(histo,currentHistogram,photons.product(),jets.product(), \
1094 +                                                                                                     cumulativeFlags.at("photons").at(currentDir),cumulativeFlags.at("secondary jets").at(currentDir), \
1095 +                                                                                                     cumulativeFlags.at("photon-secondary jet pairs").at(currentDir),scaleFactor);
1096 +            else if(currentHistogram.inputCollection == "electrons") fill2DHistogram(histo,currentHistogram,electrons.product(),cumulativeFlags.at("electrons").at(currentDir),scaleFactor);
1097 +            else if(currentHistogram.inputCollection == "secondary electrons") fill2DHistogram(histo,currentHistogram,electrons.product(),cumulativeFlags.at("secondary electrons").at(currentDir),scaleFactor);
1098 +            else if(currentHistogram.inputCollection == "electron-electron pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),electrons.product(), \
1099 +                                                                                                   cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("electrons").at(currentDir), \
1100 +                                                                                                   cumulativeFlags.at("electron-electron pairs").at(currentDir),scaleFactor);
1101 +            else if(currentHistogram.inputCollection == "jet-jet pairs") fill2DHistogram(histo,currentHistogram,jets.product(),jets.product(), \
1102 +                                                                                         cumulativeFlags.at("jets").at(currentDir),cumulativeFlags.at("jets").at(currentDir), \
1103 +                                                                                         cumulativeFlags.at("jet-jet pairs").at(currentDir),scaleFactor);
1104 +            else if(currentHistogram.inputCollection == "electron-secondary electron pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),electrons.product(), \
1105 +                                                                                                             cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("secondary electrons").at(currentDir), \
1106 +                                                                                                             cumulativeFlags.at("electron-secondary electron pairs").at(currentDir),scaleFactor);
1107 +            else if(currentHistogram.inputCollection == "electron-muon pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),muons.product(), \
1108 +                                                                                               cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("muons").at(currentDir), \
1109 +                                                                                               cumulativeFlags.at("electron-muon pairs").at(currentDir),scaleFactor);
1110 +            else if(currentHistogram.inputCollection == "electron-jet pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),jets.product(), \
1111 +                                                                                              cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("jets").at(currentDir), \
1112 +                                                                                              cumulativeFlags.at("electron-jet pairs").at(currentDir),scaleFactor);
1113 +            else if(currentHistogram.inputCollection == "electron-photon pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),photons.product(), \
1114 +                                                                                              cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("photons").at(currentDir), \
1115 +                                                                                              cumulativeFlags.at("electron-photon pairs").at(currentDir),scaleFactor);
1116 +            else if(currentHistogram.inputCollection == "muon-jet pairs") fill2DHistogram(histo,currentHistogram,muons.product(),jets.product(), \
1117 +                                                                                          cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("jets").at(currentDir), \
1118 +                                                                                          cumulativeFlags.at("muon-jet pairs").at(currentDir),scaleFactor);
1119 +            else if(currentHistogram.inputCollection == "met-jet pairs") fill2DHistogram(histo,currentHistogram,muons.product(),jets.product(), \
1120 +                                                                                         cumulativeFlags.at("mets").at(currentDir),cumulativeFlags.at("jets").at(currentDir), \
1121 +                                                                                         cumulativeFlags.at("met-jet pairs").at(currentDir),scaleFactor);
1122 +            else if(currentHistogram.inputCollection == "photon-jet pairs") fill2DHistogram(histo,currentHistogram,photons.product(),jets.product(), \
1123 +                                                                                          cumulativeFlags.at("photons").at(currentDir),cumulativeFlags.at("jets").at(currentDir), \
1124 +                                                                                          cumulativeFlags.at("photon-jet pairs").at(currentDir),scaleFactor);
1125 +            else if(currentHistogram.inputCollection == "muon-photon pairs") fill2DHistogram(histo,currentHistogram,muons.product(),photons.product(), \
1126 +                                                                                          cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("photons").at(currentDir), \
1127 +                                                                                          cumulativeFlags.at("muon-photon pairs").at(currentDir),scaleFactor);
1128 +            else if(currentHistogram.inputCollection == "electron-track pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),tracks.product(),
1129 +                                                                                                cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
1130 +                                                                                                cumulativeFlags.at("electron-track pairs").at(currentDir),scaleFactor);
1131 +            else if(currentHistogram.inputCollection == "muon-track pairs") fill2DHistogram(histo,currentHistogram,muons.product(),tracks.product(),
1132 +                                                                                            cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
1133 +                                                                                            cumulativeFlags.at("muon-track pairs").at(currentDir),scaleFactor);
1134 +            else if(currentHistogram.inputCollection == "muon-tau pairs") fill2DHistogram(histo,currentHistogram,muons.product(),taus.product(),
1135 +                                                                                          cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("taus").at(currentDir),
1136 +                                                                                          cumulativeFlags.at("muon-tau pairs").at(currentDir),scaleFactor);
1137 +            else if(currentHistogram.inputCollection == "tau-tau pairs") fill2DHistogram(histo,currentHistogram,taus.product(),taus.product(),
1138 +                                                                                         cumulativeFlags.at("taus").at(currentDir),cumulativeFlags.at("taus").at(currentDir),
1139 +                                                                                         cumulativeFlags.at("tau-tau pairs").at(currentDir),scaleFactor);
1140 +            else if(currentHistogram.inputCollection == "tau-track pairs") fill2DHistogram(histo,currentHistogram,taus.product(),tracks.product(),
1141 +                                                                                           cumulativeFlags.at("taus").at(currentDir),cumulativeFlags.at("tracks").at(currentDir),
1142 +                                                                                           cumulativeFlags.at("tau-track pairs").at(currentDir),scaleFactor);
1143 +            else if(currentHistogram.inputCollection == "electron-trigobj pairs") fill2DHistogram(histo,currentHistogram,electrons.product(),trigobjs.product(),
1144 +                                                                                                  cumulativeFlags.at("electrons").at(currentDir),cumulativeFlags.at("trigobjs").at(currentDir),
1145 +                                                                                                  cumulativeFlags.at("electron-trigobj pairs").at(currentDir),scaleFactor);
1146 +            else if(currentHistogram.inputCollection == "muon-trigobj pairs") fill2DHistogram(histo,currentHistogram,muons.product(),trigobjs.product(),
1147 +                                                                                              cumulativeFlags.at("muons").at(currentDir),cumulativeFlags.at("trigobjs").at(currentDir),
1148 +                                                                                              cumulativeFlags.at("muon-trigobj pairs").at(currentDir),scaleFactor);
1149 +            else if(currentHistogram.inputCollection == "events") fill2DHistogram(histo,currentHistogram,events.product(),cumulativeFlags.at("events").at(currentDir),scaleFactor);
1150 +            else if(currentHistogram.inputCollection == "taus") fill2DHistogram(histo,currentHistogram,taus.product(),cumulativeFlags.at("taus").at(currentDir),scaleFactor);
1151 +            else if(currentHistogram.inputCollection == "mets") fill2DHistogram(histo,currentHistogram,mets.product(),cumulativeFlags.at("mets").at(currentDir),scaleFactor);
1152 +            else if(currentHistogram.inputCollection == "tracks") fill2DHistogram(histo,currentHistogram,tracks.product(),cumulativeFlags.at("tracks").at(currentDir),scaleFactor);
1153 +            else if(currentHistogram.inputCollection == "track-event pairs") fill2DHistogram(histo,currentHistogram,tracks.product(),events.product(),
1154 +                                                                                             cumulativeFlags.at("tracks").at(currentDir),cumulativeFlags.at("events").at(currentDir),
1155 +                                                                                             cumulativeFlags.at("track-event pairs").at(currentDir),scaleFactor);
1156 +            else if(currentHistogram.inputCollection == "genjets") fill2DHistogram(histo,currentHistogram,genjets.product(),cumulativeFlags.at("genjets").at(currentDir),scaleFactor);
1157 +            else if(currentHistogram.inputCollection == "mcparticles") fill2DHistogram(histo,currentHistogram,mcparticles.product(),cumulativeFlags.at("mcparticles").at(currentDir),scaleFactor);
1158 +            else if(currentHistogram.inputCollection == "primaryvertexs") fill2DHistogram(histo,currentHistogram,primaryvertexs.product(),cumulativeFlags.at("primaryvertexs").at(currentDir),scaleFactor);
1159 +            else if(currentHistogram.inputCollection == "bxlumis") fill2DHistogram(histo,currentHistogram,bxlumis.product(),cumulativeFlags.at("bxlumis").at(currentDir),scaleFactor);
1160 +            else if(currentHistogram.inputCollection == "photons") fill2DHistogram(histo,currentHistogram,photons.product(),cumulativeFlags.at("photons").at(currentDir),scaleFactor);
1161 +            else if(currentHistogram.inputCollection == "superclusters") fill2DHistogram(histo,currentHistogram,superclusters.product(),cumulativeFlags.at("superclusters").at(currentDir),scaleFactor);
1162 +            else if(currentHistogram.inputCollection == "trigobjs") fill2DHistogram(histo,currentHistogram,trigobjs.product(),cumulativeFlags.at("trigobjs").at(currentDir),scaleFactor);
1163 +            else if(currentHistogram.inputCollection == "stops" && datasetType_ == "signalMC") fill2DHistogram(histo,currentHistogram,stops.product(),cumulativeFlags.at("stops").at(currentDir),scaleFactor);
1164 +          }
1165  
1166 +        }
1167  
968    //fills histograms with the sizes of collections
969    for (uint currentObjectIndex = 0; currentObjectIndex != objectsToPlot.size(); currentObjectIndex++){
970
971      string currentObject = objectsToPlot.at(currentObjectIndex);
972      string objectToPlot = "";
973
974      // Name of objectToPlot here must match the name specified in OSUAnalysis::OSUAnalysis().
975      if(currentObject == "muon-muon pairs")                         objectToPlot = "dimuonPairs";
976      else if(currentObject == "electron-electron pairs")            objectToPlot = "dielectronPairs";
977      else if(currentObject == "electron-muon pairs")                objectToPlot = "electronMuonPairs";
978      else if(currentObject == "electron-jet pairs")                 objectToPlot = "electronJetPairs";
979      else if(currentObject == "muon-jet pairs")                     objectToPlot = "muonJetPairs";
980      else if(currentObject == "jet-jet pairs")                      objectToPlot = "dijetPairs";
981      else if(currentObject == "secondary jets")                     objectToPlot = "secondaryJets";
982      else if(currentObject == "electron-track pairs")               objectToPlot = "electronTrackPairs";
983      else if(currentObject == "muon-track pairs")                   objectToPlot = "muonTrackPairs";
984      else if(currentObject == "muon-tau pairs")                     objectToPlot = "muonTauPairs";
985      else if(currentObject == "tau-tau pairs")                      objectToPlot = "ditauPairs";
986      else if(currentObject == "tau-track pairs")                    objectToPlot = "tauTrackPairs";
987      else if(currentObject == "track-event pairs")                  objectToPlot = "trackEventPairs";
988      else if(currentObject == "muon-secondary muon pairs")          objectToPlot = "muonSecondaryMuonPairs";
989      else if(currentObject == "secondary muons")                    objectToPlot = "secondaryMuons";
990      else if(currentObject == "electron-secondary electron pairs")  objectToPlot = "electronSecondaryElectronPairs";
991      else if(currentObject == "secondary electrons")                objectToPlot = "secondaryElectrons";
992      else if(currentObject == "electron-trigobj pairs")             objectToPlot = "electronTrigobjPairs";
993      else if(currentObject == "muon-trigobj pairs")                 objectToPlot = "muonTrigobjPairs";
994      else objectToPlot = currentObject;
995
996      string tempCurrentObject = objectToPlot;
997      tempCurrentObject.at(0) = toupper(tempCurrentObject.at(0));
998      string histoName = "num" + tempCurrentObject;
999
1000      //set position of primary vertex in event, in order to calculate quantities relative to it
1001      if(find(objectsToCut.begin(), objectsToCut.end(), currentObject) != objectsToCut.end()) {
1002        vector<bool> lastCutFlags = cumulativeFlags.at(currentObject).at(currentDir);
1003        int numToPlot = 0;
1004        for (uint currentFlag = 0; currentFlag != lastCutFlags.size(); currentFlag++){
1005          if(lastCutFlags.at(currentFlag)) numToPlot++;
1006        }
1007        if(objectToPlot == "primaryvertexs"){
1008          oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName+"BeforePileupCorrection")->Fill(primaryvertexs->size());
1009          oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName+"AfterPileupCorrection")->Fill(primaryvertexs->size(),scaleFactor);
1010        }
1011        else {
1012          oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(numToPlot,scaleFactor);
1013        }
1014      }
1015      else if(objectToPlot == "jets")           oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(jets->size(),scaleFactor);
1016      else if(objectToPlot == "secondaryJets")  oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(jets->size(),scaleFactor);
1017      else if(objectToPlot == "muons")          oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(muons->size(),scaleFactor);
1018      else if(objectToPlot == "secondaryMuons") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(muons->size(),scaleFactor);
1019      else if(objectToPlot == "dimuonPairs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(muons->size()*(muons->size()-1)/2,scaleFactor);
1020      else if(objectToPlot == "muonSecondaryMuonPairs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(muons->size()*(muons->size()-1)/2,scaleFactor);
1021      else if(objectToPlot == "electrons") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(electrons->size(),scaleFactor);
1022      else if(objectToPlot == "secondaryElectrons") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(electrons->size(),scaleFactor);
1023      else if(objectToPlot == "dielectronPairs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(electrons->size()*(electrons->size()-1)/2,scaleFactor);
1024      else if(objectToPlot == "electronSecondaryElectronPairs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(electrons->size()*(electrons->size()-1)/2,scaleFactor);
1025      else if(objectToPlot == "electronMuonPairs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(electrons->size()*muons->size(),scaleFactor);
1026      else if(objectToPlot == "electronJetPairs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(electrons->size()*jets->size(),scaleFactor);
1027      else if(objectToPlot == "muonJetPairs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(muons->size()*jets->size(),scaleFactor);
1028      else if(objectToPlot == "electronTrackPairs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(electrons->size()*tracks->size(),scaleFactor);
1029      else if(objectToPlot == "electronTrigobjPairs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(electrons->size()*trigobjs->size(),scaleFactor);
1030      else if(objectToPlot == "muonTrigobjPairs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(muons->size()*trigobjs->size(),scaleFactor);
1031      else if(objectToPlot == "events") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(events->size(),scaleFactor);
1032      else if(objectToPlot == "taus") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(taus->size(),scaleFactor);
1033      else if(objectToPlot == "mets") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(mets->size(),scaleFactor);
1034      else if(objectToPlot == "tracks") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(tracks->size(),scaleFactor);
1035      else if(objectToPlot == "genjets") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(genjets->size(),scaleFactor);
1036      else if(objectToPlot == "mcparticles") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(mcparticles->size(),scaleFactor);
1037      else if(objectToPlot == "bxlumis") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(bxlumis->size(),scaleFactor);
1038      else if(objectToPlot == "photons") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(photons->size(),scaleFactor);
1039      else if(objectToPlot == "superclusters") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(superclusters->size(),scaleFactor);
1040      else if(objectToPlot == "trigobjs") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(trigobjs->size(),scaleFactor);
1041      else if(objectToPlot == "primaryvertexs"){
1042        oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName+"BeforePileupCorrection")->Fill(primaryvertexs->size());
1043        oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName+"AfterPileupCorrection")->Fill(primaryvertexs->size(),scaleFactor);
1044      }
1045      if(objectToPlot == "stops" && datasetType_ == "signalMC") oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(stops->size(),scaleFactor);
1168  
1169 <     } // end for (uint currentObjectIndex = 0; currentObjectIndex != objectsToPlot.size(); currentObjectIndex++)
1169 >        //fills histograms with the sizes of collections
1170 >        for (uint currentObjectIndex = 0; currentObjectIndex != objectsToPlot.size(); currentObjectIndex++){
1171 >
1172 >          string currentObject = objectsToPlot.at(currentObjectIndex);
1173 >          string objectToPlot = "";
1174 >
1175 >          // Name of objectToPlot here must match the name specified in OSUAnalysis::OSUAnalysis().
1176 >          if(currentObject == "muon-muon pairs")                         objectToPlot = "dimuonPairs";
1177 >          else if(currentObject == "electron-electron pairs")            objectToPlot = "dielectronPairs";
1178 >          else if(currentObject == "electron-muon pairs")                objectToPlot = "electronMuonPairs";
1179 >          else if(currentObject == "electron-photon pairs")              objectToPlot = "electronPhotonPairs";
1180 >          else if(currentObject == "electron-jet pairs")                 objectToPlot = "electronJetPairs";
1181 >          else if(currentObject == "muon-jet pairs")                     objectToPlot = "muonJetPairs";
1182 >          else if(currentObject == "met-jet pairs")                      objectToPlot = "metJetPairs";
1183 >          else if(currentObject == "muon-photon pairs")                  objectToPlot = "muonPhotonPairs";
1184 >          else if(currentObject == "photon-jet pairs")                   objectToPlot = "photonJetPairs";
1185 >          else if(currentObject == "jet-jet pairs")                      objectToPlot = "dijetPairs";
1186 >          else if(currentObject == "jet-secondary jet pairs")            objectToPlot = "jetSecondaryJetPairs";
1187 >          else if(currentObject == "secondary jets")                     objectToPlot = "secondaryJets";
1188 >          else if(currentObject == "electron-track pairs")               objectToPlot = "electronTrackPairs";
1189 >          else if(currentObject == "muon-track pairs")                   objectToPlot = "muonTrackPairs";
1190 >          else if(currentObject == "muon-tau pairs")                     objectToPlot = "muonTauPairs";
1191 >          else if(currentObject == "tau-tau pairs")                      objectToPlot = "ditauPairs";
1192 >          else if(currentObject == "tau-track pairs")                    objectToPlot = "tauTrackPairs";
1193 >          else if(currentObject == "track-event pairs")                  objectToPlot = "trackEventPairs";
1194 >          else if(currentObject == "muon-secondary muon pairs")          objectToPlot = "muonSecondaryMuonPairs";
1195 >          else if(currentObject == "secondary muons")                    objectToPlot = "secondaryMuons";
1196 >          else if(currentObject == "muon-secondary jet pairs")           objectToPlot = "muonSecondaryJetPairs";
1197 >          else if(currentObject == "electron-secondary jet pairs")       objectToPlot = "electronSecondaryJetPairs";
1198 >          else if(currentObject == "photon-secondary jet pairs")         objectToPlot = "photonSecondaryJetPairs";
1199 >          else if(currentObject == "electron-secondary electron pairs")  objectToPlot = "electronSecondaryElectronPairs";
1200 >          else if(currentObject == "secondary electrons")                objectToPlot = "secondaryElectrons";
1201 >          else if(currentObject == "electron-trigobj pairs")             objectToPlot = "electronTrigobjPairs";
1202 >          else if(currentObject == "muon-trigobj pairs")                 objectToPlot = "muonTrigobjPairs";
1203 >          else objectToPlot = currentObject;
1204 >
1205 >          string tempCurrentObject = objectToPlot;
1206 >          tempCurrentObject.at(0) = toupper(tempCurrentObject.at(0));
1207 >          string histoName = "num" + tempCurrentObject;
1208 >
1209 >
1210 >          if(find(objectsToCut.begin(), objectsToCut.end(), currentObject) != objectsToCut.end()) {
1211 >            flagPair lastCutFlags = cumulativeFlags.at(currentObject).at(currentDir);
1212 >            int numToPlot = 0;
1213 >            for (uint currentFlag = 0; currentFlag != lastCutFlags.size(); currentFlag++){
1214 >              if(lastCutFlags.at(currentFlag).second) numToPlot++;
1215 >            }
1216 >
1217 >            if(objectToPlot == "primaryvertexs"){
1218 >              oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName+"BeforePileupCorrection")->Fill(primaryvertexs->size());
1219 >              oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName+"AfterPileupCorrection")->Fill(primaryvertexs->size(),scaleFactor);
1220 >            }
1221 >            else {
1222 >              oneDHists_.at(currentChannelIndex).at(currentCut).at(histoName)->Fill(numToPlot,scaleFactor);
1223 >            }
1224 >          }
1225 >        } // end for (uint currentObjectIndex = 0; currentObjectIndex != objectsToPlot.size(); currentObjectIndex++)
1226 >
1227 >
1228 >      } // end if(eventPassedPreviousCuts.at(currentDir))
1229 >    } // end loop over cuts
1230 >
1231 >    if (!useEDMFormat_ && eventPassedAllCuts){
1232 >      // Assign BNTree variables
1233 >      for (uint iBranch = 0; iBranch != treeBranches_.size(); iBranch++) {
1234 >        BranchSpecs brSpecs = treeBranches_.at(iBranch);
1235 >        string coll = brSpecs.inputCollection;
1236 >        if (cumulativeFlags.count(coll) == 0) cout << "Error: no flags found for collection:  " << coll << ", will cause a seg fault" << endl;
1237 >
1238 >        if     (coll == "jets")                assignTreeBranch(brSpecs,jets.product(),          cumulativeFlags.at(coll).back());
1239 >        else if(coll == "secondary jets")      assignTreeBranch(brSpecs,jets.product(),          cumulativeFlags.at(coll).back());
1240 >        else if(coll == "muons")               assignTreeBranch(brSpecs,muons.product(),         cumulativeFlags.at(coll).back());
1241 >        else if(coll == "secondary muons")     assignTreeBranch(brSpecs,muons.product(),         cumulativeFlags.at(coll).back());
1242 >        else if(coll == "electrons")           assignTreeBranch(brSpecs,electrons.product(),     cumulativeFlags.at(coll).back());
1243 >        else if(coll == "secondary electrons") assignTreeBranch(brSpecs,electrons.product(),     cumulativeFlags.at(coll).back());
1244 >        else if(coll == "events")              assignTreeBranch(brSpecs,events.product(),        cumulativeFlags.at(coll).back());
1245 >        else if(coll == "taus")                assignTreeBranch(brSpecs,taus.product(),          cumulativeFlags.at(coll).back());
1246 >        else if(coll == "mets")                assignTreeBranch(brSpecs,mets.product(),          cumulativeFlags.at(coll).back());
1247 >        else if(coll == "tracks")              assignTreeBranch(brSpecs,tracks.product(),        cumulativeFlags.at(coll).back());
1248 >        else if(coll == "genjets")             assignTreeBranch(brSpecs,genjets.product(),       cumulativeFlags.at(coll).back());
1249 >        else if(coll == "mcparticles")         assignTreeBranch(brSpecs,mcparticles.product(),   cumulativeFlags.at(coll).back());
1250 >        else if(coll == "primaryvertexs")      assignTreeBranch(brSpecs,primaryvertexs.product(),cumulativeFlags.at(coll).back());
1251 >        else if(coll == "bxlumis")             assignTreeBranch(brSpecs,bxlumis.product(),       cumulativeFlags.at(coll).back());
1252 >        else if(coll == "photons")             assignTreeBranch(brSpecs,photons.product(),       cumulativeFlags.at(coll).back());
1253 >        else if(coll == "superclusters")       assignTreeBranch(brSpecs,superclusters.product(), cumulativeFlags.at(coll).back());
1254 >        else if(coll == "trigobjs")            assignTreeBranch(brSpecs,trigobjs.product(),      cumulativeFlags.at(coll).back());
1255 >        else if(coll == "stops"
1256 >                && datasetType_ == "signalMC") assignTreeBranch(brSpecs,stops.product(),         cumulativeFlags.at(coll).back());
1257 >      } // end loop over branches
1258 >
1259 >      if (!BNTrees_.at(currentChannelIndex)) { cout << "ERROR:  Undefined BNTree.  Will likely seg fault." << endl; }
1260 >      BNTrees_.at(currentChannelIndex)->Fill();  // only fill if event has passed cuts
1261      }
1262 <  }
1263 <  } //end loop over channel
1262 >
1263 >    (*channelDecisions)[currentChannel.name] = eventPassedAllCuts;
1264 >
1265 >  } // end loop over channel
1266  
1267    masterCutFlow_->fillCutFlow(masterScaleFactor);
1268  
1269 +  event.put (channelDecisions, "channelDecisions");
1270 +
1271   } // end void OSUAnalysis::analyze (const edm::Event &event, const edm::EventSetup &setup)
1272  
1273  
# Line 1086 | Line 1303 | OSUAnalysis::evaluateComparison (string
1303   }
1304  
1305   bool
1306 < OSUAnalysis::evaluateTriggers (vector<string> triggersToTest, const BNtriggerCollection* triggerCollection){
1306 > OSUAnalysis::evaluateTriggers (vector<string> triggersToTest, vector<string> triggersToVeto, const BNtriggerCollection* triggerCollection){
1307  
1308 +  //initialize to false until a chosen trigger is passed
1309    bool triggerDecision = false;
1310  
1311 <  for (BNtriggerCollection::const_iterator trigger = triggerCollection->begin (); trigger != triggerCollection->end (); trigger++)
1312 <    {
1313 <      if(trigger->pass != 1) continue;
1314 <      for(uint triggerName = 0; triggerName != triggersToTest.size(); triggerName++)
1315 <        {
1316 <          if(trigger->name.find(triggersToTest.at(triggerName))!=string::npos){
1317 <            triggerDecision = true;
1318 <          }
1319 <        }
1311 >  if (printAllTriggers_) cout << "Printing list of all available triggers (which this event may or may not pass):" << endl;
1312 >  //loop over all triggers defined in the event
1313 >  for (BNtriggerCollection::const_iterator trigger = triggerCollection->begin (); trigger != triggerCollection->end (); trigger++){
1314 >
1315 >    if (printAllTriggers_) cout << "   " << trigger->name << endl;
1316 >
1317 >    //we're only interested in triggers that actually passed
1318 >    if(trigger->pass != 1) continue;
1319 >
1320 >    //if the event passes one of the veto triggers, exit and return false
1321 >    for(uint triggerName = 0; triggerName != triggersToVeto.size(); triggerName++){
1322 >      if(trigger->name.find(triggersToVeto.at(triggerName))!=string::npos) return false;
1323 >    }
1324 >    //if the event passes one of the chosen triggers, set triggerDecision to true
1325 >    for(uint triggerName = 0; triggerName != triggersToTest.size(); triggerName++){
1326 >      if(trigger->name.find(triggersToTest.at(triggerName))!=string::npos) triggerDecision = true;
1327      }
1328 <  return triggerDecision;
1328 >  }
1329 >
1330 >  printAllTriggers_ = false;  // only print triggers once, not every event
1331  
1332 +  //if none of the veto triggers fired:
1333 +  //return the OR of all the chosen triggers
1334 +  if (triggersToTest.size() != 0) return triggerDecision;
1335 +  //or if no triggers were defined return true
1336 +  else return true;
1337   }
1338  
1339 +
1340   vector<string>
1341   OSUAnalysis::splitString (string inputString){
1342  
# Line 1265 | Line 1498 | OSUAnalysis::valueLookup (const BNjet* o
1498    else if(variable == "puJetId_loose_simple") value = object->puJetId_loose_simple;
1499    else if(variable == "puJetId_loose_cutbased") value = object->puJetId_loose_cutbased;
1500  
1501 +  //user defined variable
1502 +  else if(variable == "disappTrkLeadingJetID") {
1503 +    value = object->pt > 110
1504 +      && fabs(object->eta) < 2.4
1505 +      && object->chargedHadronEnergyFraction > 0.2
1506 +      && object->neutralHadronEnergyFraction < 0.7
1507 +      && object->chargedEmEnergyFraction < 0.5
1508 +      && object->neutralEmEnergyFraction < 0.7;
1509 +  }
1510 +
1511 +  else if(variable == "disappTrkSubLeadingJetID") {
1512 +    value = object->pt > 30
1513 +      && fabs(object->eta) < 4.5
1514 +      && object->neutralHadronEnergyFraction < 0.7
1515 +      && object->chargedEmEnergyFraction < 0.5;
1516 +  }
1517 +
1518 +  else if(variable == "dPhiMet") {
1519 +    if (const BNmet *met = chosenMET ()) {
1520 +      value = deltaPhi (object->phi, met->phi);
1521 +    } else value = -999;
1522 +  }
1523 +
1524  
1525    else{cout << "WARNING: invalid variable '" << variable << "'\n"; value = -999;}
1526  
1527    value = applyFunction(function, value);
1528  
1529    return value;
1530 < }
1530 > } // end jet valueLookup
1531  
1532  
1533   //!muon valueLookup
# Line 1431 | Line 1687 | OSUAnalysis::valueLookup (const BNmuon*
1687    else if(variable == "time_ndof") value = object->time_ndof;
1688  
1689    //user-defined variables
1690 +  else if(variable == "looseID") {
1691 +    value = object->pt > 10 &&
1692 +      (object->isGlobalMuon  > 0 ||
1693 +       object->isTrackerMuon > 0);
1694 +  }
1695    else if(variable == "correctedD0VertexErr") value =  hypot (object->tkD0err, hypot (chosenVertex ()->xError, chosenVertex ()->yError));
1696    else if(variable == "correctedD0VertexSig") value =  object->correctedD0Vertex / hypot (object->tkD0err, hypot (chosenVertex ()->xError, chosenVertex ()->yError));
1697    else if(variable == "detIso") value = (object->trackIsoDR03) / object->pt;
# Line 1558 | Line 1819 | OSUAnalysis::valueLookup (const BNmuon*
1819      value = object->isGlobalMuon > 0                \
1820        && object->isPFMuon > 0                        \
1821        && object->normalizedChi2 < 10                \
1822 <                                  && object->numberOfValidMuonHits > 0        \
1822 >      && object->numberOfValidMuonHits > 0        \
1823        && object->numberOfMatchedStations > 1        \
1824        && fabs(object->correctedD0Vertex) < 0.2        \
1825        && fabs(object->correctedDZ) < 0.5        \
# Line 1569 | Line 1830 | OSUAnalysis::valueLookup (const BNmuon*
1830      value = object->isGlobalMuon > 0                \
1831        && object->isPFMuon > 0                        \
1832        && object->normalizedChi2 < 10                \
1833 <                                  && object->numberOfValidMuonHits > 0        \
1833 >      && object->numberOfValidMuonHits > 0        \
1834        && object->numberOfMatchedStations > 1        \
1835        && object->numberOfValidPixelHits > 0        \
1836        && object->numberOfLayersWithMeasurement > 5;
# Line 1624 | Line 1885 | OSUAnalysis::valueLookup (const BNmuon*
1885      d0Error = hypot (object->tkD0err, hypot (chosenVertex ()->xError, chosenVertex ()->yError));
1886      dzError = hypot (object->tkDZerr, chosenVertex ()->zError);
1887      value = fabs (object->correctedD0Vertex) > 0.2 || fabs (object->correctedDZ) > 0.5
1888 <         || fabs (object->correctedD0Vertex / d0Error) > 99.0
1889 <         || fabs (object->correctedDZ / dzError) > 99.0;
1888 >      || fabs (object->correctedD0Vertex / d0Error) > 99.0
1889 >      || fabs (object->correctedDZ / dzError) > 99.0;
1890      value = (object->isStandAloneMuon && !object->isTrackerMuon && !object->isGlobalMuon) || !value;
1891    }
1892  
# Line 1636 | Line 1897 | OSUAnalysis::valueLookup (const BNmuon*
1897    value = applyFunction(function, value);
1898  
1899    return value;
1900 < }
1900 > } // end muon valueLookup
1901 >
1902  
1903   //!electron valueLookup
1904   double
# Line 1901 | Line 2163 | OSUAnalysis::valueLookup (const BNelectr
2163        }
2164    }
2165  
2166 +  else if(variable == "looseID"){
2167 +    value = object->pt > 10
2168 +      && object->mvaNonTrigV0 > 0;
2169 +      }
2170    else if(variable == "correctedD0VertexInEBPositiveCharge"){
2171      if(fabs(object->eta) < 0.8 && object->charge > 0) value = object->correctedD0Vertex;
2172      else value = -999;
# Line 2024 | Line 2290 | OSUAnalysis::valueLookup (const BNelectr
2290      d0Error = hypot (object->tkD0err, hypot (chosenVertex ()->xError, chosenVertex ()->yError));
2291      dzError = hypot (object->tkDZerr, chosenVertex ()->zError);
2292      value = fabs (object->correctedD0Vertex) > 0.2 || fabs (object->correctedDZ) > 0.5
2293 <         || fabs (object->correctedD0Vertex / d0Error) > 99.0
2294 <         || fabs (object->correctedDZ / dzError) > 99.0;
2293 >      || fabs (object->correctedD0Vertex / d0Error) > 99.0
2294 >      || fabs (object->correctedDZ / dzError) > 99.0;
2295      value = !value;
2296    }
2297  
# Line 2036 | Line 2302 | OSUAnalysis::valueLookup (const BNelectr
2302    value = applyFunction(function, value);
2303  
2304    return value;
2305 < }
2305 > } // end electron valueLookup
2306 >
2307  
2308   //!event valueLookup
2309   double
# Line 2117 | Line 2384 | OSUAnalysis::valueLookup (const BNevent*
2384    else if(variable == "muonScaleFactor") value = muonScaleFactor_;
2385    else if(variable == "electronScaleFactor") value = electronScaleFactor_;
2386    else if(variable == "stopCTauScaleFactor") value = stopCTauScaleFactor_;
2387 <
2387 >  else if(variable == "bTagScaleFactor") value = bTagScaleFactor_;
2388    else{cout << "WARNING: invalid variable '" << variable << "'\n"; value = -999;}
2389  
2390    value = applyFunction(function, value);
2391  
2392    return value;
2393 < }
2393 > } // end event valueLookup
2394 >
2395  
2396   //!tau valueLookup
2397   double
# Line 2171 | Line 2439 | OSUAnalysis::valueLookup (const BNtau* o
2439    else if(variable == "HPSdecayModeFinding") value = object->HPSdecayModeFinding;
2440    else if(variable == "leadingTrackValid") value = object->leadingTrackValid;
2441  
2442 <
2442 >  else if (variable == "looseHadronicID") {
2443 >    value = object->pt > 10
2444 >      && object->eta < 2.3
2445 >      && object->HPSbyLooseCombinedIsolationDeltaBetaCorr > 0
2446 >      && object->HPSdecayModeFinding > 0
2447 >      && object->HPSagainstElectronLoose > 0
2448 >      && object->HPSagainstMuonTight > 0;
2449 >  }
2450  
2451    else if(variable == "genDeltaRLowest") value = getGenDeltaRLowest(object);
2452  
# Line 2223 | Line 2498 | OSUAnalysis::valueLookup (const BNtau* o
2498    value = applyFunction(function, value);
2499  
2500    return value;
2501 < }
2501 > } // end tau valueLookup
2502 >
2503  
2504   //!met valueLookup
2505   double
# Line 2296 | Line 2572 | OSUAnalysis::valueLookup (const BNmet* o
2572    value = applyFunction(function, value);
2573  
2574    return value;
2575 < }
2575 > } // end met valueLookup
2576 >
2577  
2578   //!track valueLookup
2579   double
# Line 2324 | Line 2601 | OSUAnalysis::valueLookup (const BNtrack*
2601    else if(variable == "numValidHits") value = object->numValidHits;
2602    else if(variable == "isHighPurity") value = object->isHighPurity;
2603  
2327
2604    //additional BNs info for disappTrks
2605 <  else if(variable == "caloEMDeltaRp3") value = object->caloEMDeltaRp3;
2606 <  else if(variable == "caloHadDeltaRp3") value = object->caloHadDeltaRp3;
2607 <  else if(variable == "caloEMDeltaRp4") value = object->caloEMDeltaRp4;
2608 <  else if(variable == "caloHadDeltaRp4") value = object->caloHadDeltaRp4;
2609 <  else if(variable == "caloEMDeltaRp5") value = object->caloEMDeltaRp5;
2610 <  else if(variable == "caloHadDeltaRp5") value = object->caloHadDeltaRp5;
2611 <  else if(variable == "nTracksRp5") value = object->nTracksRp5;
2612 <  else if(variable == "nHitsMissingOuter") value = object->nHitsMissingOuter;
2337 <  else if(variable == "nHitsMissingInner") value = object->nHitsMissingInner;
2605 >  else if(variable == "caloEMDeltaRp3")     value = object->caloEMDeltaRp3;
2606 >  else if(variable == "caloHadDeltaRp3")    value = object->caloHadDeltaRp3;
2607 >  else if(variable == "caloEMDeltaRp4")     value = object->caloEMDeltaRp4;
2608 >  else if(variable == "caloHadDeltaRp4")    value = object->caloHadDeltaRp4;
2609 >  else if(variable == "caloEMDeltaRp5")     value = object->caloEMDeltaRp5;
2610 >  else if(variable == "caloHadDeltaRp5")    value = object->caloHadDeltaRp5;
2611 >  else if(variable == "nHitsMissingOuter")  value = object->nHitsMissingOuter;
2612 >  else if(variable == "nHitsMissingInner")  value = object->nHitsMissingInner;
2613    else if(variable == "nHitsMissingMiddle") value = object->nHitsMissingMiddle;
2614 <  else if(variable == "depTrkRp5") value = object->depTrkRp5;
2614 >  else if(variable == "depTrkRp3")          value = object->depTrkRp3;
2615 >  else if(variable == "depEcalRp3")         value = object->depEcalRp3;
2616 >  else if(variable == "depHcalRp3")         value = object->depHcalRp3;
2617 >  else if(variable == "depHoRp3")           value = object->depHoRp3;
2618 >  else if(variable == "nTracksRp3")         value = object->nTracksRp3;
2619 >  else if(variable == "trackerVetoPtRp3")   value = object->trackerVetoPtRp3;
2620 >  else if(variable == "emVetoEtRp3")        value = object->emVetoEtRp3;
2621 >  else if(variable == "hadVetoEtRp3")       value = object->hadVetoEtRp3;
2622 >  else if(variable == "hoVetoEtRp3")        value = object->hoVetoEtRp3;
2623 >  else if(variable == "depTrkRp5")          value = object->depTrkRp5;
2624 >  else if(variable == "depEcalRp5")         value = object->depEcalRp5;
2625 >  else if(variable == "depHcalRp5")         value = object->depHcalRp5;
2626 >  else if(variable == "depHoRp5")           value = object->depHoRp5;
2627 >  else if(variable == "nTracksRp5")         value = object->nTracksRp5;
2628 >  else if(variable == "trackerVetoPtRp5")   value = object->trackerVetoPtRp5;
2629 >  else if(variable == "emVetoEtRp5")        value = object->emVetoEtRp5;
2630 >  else if(variable == "hadVetoEtRp5")       value = object->hadVetoEtRp5;
2631 >  else if(variable == "hoVetoEtRp5")        value = object->hoVetoEtRp5;
2632  
2633    //user defined variables
2634    else if(variable == "d0wrtBS") value = (object->vx-events->at(0).BSx)*object->py/object->pt - (object->vy-events->at(0).BSy)*object->px/object->pt;
# Line 2369 | Line 2661 | OSUAnalysis::valueLookup (const BNtrack*
2661        pt = object->pt;
2662      value = vz - (vx * px + vy * py)/pt * (pz/pt);
2663    }
2664 +
2665 +
2666    else if(variable == "genDeltaRLowest") value = getGenDeltaRLowest(object);
2667  
2668    else if(variable == "genMatchedPdgId"){
# Line 2421 | Line 2715 | OSUAnalysis::valueLookup (const BNtrack*
2715    value = applyFunction(function, value);
2716  
2717    return value;
2718 < }
2718 > } // end track valueLookup
2719 >
2720  
2721   //!genjet valueLookup
2722   double
# Line 2584 | Line 2879 | OSUAnalysis::valueLookup (const BNmcpart
2879    value = applyFunction(function, value);
2880  
2881    return value;
2882 < }
2882 > } // end mcparticle valueLookup
2883 >
2884  
2885   //!primaryvertex valueLookup
2886   double
# Line 2763 | Line 3059 | OSUAnalysis::valueLookup (const BNphoton
3059    value = applyFunction(function, value);
3060  
3061    return value;
3062 < }
3062 > } // end photon valueLookup
3063 >
3064  
3065   //!supercluster valueLookup
3066   double
# Line 2891 | Line 3188 | OSUAnalysis::valueLookup (const BNmuon*
3188    value = applyFunction(function, value);
3189  
3190    return value;
3191 + } // end muon-muon pair valueLookup
3192 +
3193 +
3194 + //!muon-photon pair valueLookup
3195 + double
3196 + OSUAnalysis::valueLookup (const BNmuon* object1, const BNphoton* object2, string variable, string function, string &stringValue){
3197 +
3198 +  double value = 0.0;
3199 +
3200 +  if(variable == "deltaPhi") value = fabs(deltaPhi(object1->phi,object2->phi));
3201 +  else if(variable == "deltaEta") value = fabs(object1->eta - object2->eta);
3202 +  else if(variable == "photonEta") value = object2->eta;
3203 +  else if(variable == "muonEta") value = object1->eta;
3204 +  else if(variable == "photonPhi") value = object2->phi;
3205 +  else if(variable == "muonPhi") value = object1->phi;
3206 +  else if(variable == "deltaR") value = deltaR(object1->eta,object1->phi,object2->eta,object2->phi);
3207 +  else if(variable == "photonGenMotherId") value = object2->genMotherId;
3208 +  else if(variable == "muonRelPFdBetaIso") value = (object1->pfIsoR04SumChargedHadronPt + max(0.0, object1->pfIsoR04SumNeutralHadronEt + object1->pfIsoR04SumPhotonEt - 0.5*object1->pfIsoR04SumPUPt)) / object1->pt;
3209 +  else if(variable == "invMass"){
3210 +    TLorentzVector fourVector1(object1->px, object1->py, object1->pz, object1->energy);
3211 +    TLorentzVector fourVector2(object2->px, object2->py, object2->pz, object2->energy);
3212 +    value = (fourVector1 + fourVector2).M();
3213 +  }
3214 +  else if(variable == "pt"){
3215 +    TLorentzVector fourVector1(object1->px, object1->py, object1->pz, object1->energy);
3216 +    TLorentzVector fourVector2(object2->px, object2->py, object2->pz, object2->energy);
3217 +    value = (fourVector1 + fourVector2).Pt();
3218 +  }
3219 +  else if(variable == "threeDAngle")
3220 +    {
3221 +      TVector3 threeVector1(object1->px, object1->py, object1->pz);
3222 +      TVector3 threeVector2(object2->px, object2->py, object2->pz);
3223 +      value = (threeVector1.Angle(threeVector2));
3224 +    }
3225 +  else if(variable == "alpha")
3226 +    {
3227 +      static const double pi = 3.1415926535897932384626433832795028841971693993751058;
3228 +      TVector3 threeVector1(object1->px, object1->py, object1->pz);
3229 +      TVector3 threeVector2(object2->px, object2->py, object2->pz);
3230 +      value = (pi-threeVector1.Angle(threeVector2));
3231 +    }
3232 +  else{cout << "WARNING: invalid variable '" << variable << "'\n"; value = -999;}
3233 +
3234 +  value = applyFunction(function, value);
3235 +
3236 +  return value;
3237 + }
3238 +
3239 + //!electron-photon pair valueLookup
3240 + double
3241 + OSUAnalysis::valueLookup (const BNelectron* object1, const BNphoton* object2, string variable, string function, string &stringValue){
3242 +
3243 +  double value = 0.0;
3244 +
3245 +  if(variable == "deltaPhi") value = fabs(deltaPhi(object1->phi,object2->phi));
3246 +  else if(variable == "deltaEta") value = fabs(object1->eta - object2->eta);
3247 +  else if(variable == "photonEta") value = object2->eta;
3248 +  else if(variable == "electronEta") value = object1->eta;
3249 +  else if(variable == "photonPhi") value = object2->phi;
3250 +  else if(variable == "electronPhi") value = object1->phi;
3251 +  else if(variable == "deltaR") value = deltaR(object1->eta,object1->phi,object2->eta,object2->phi);
3252 +  else if(variable == "photonGenMotherId") value = object2->genMotherId;
3253 +  else if(variable == "electronRelPFrhoIso") value = ( object1->chargedHadronIsoDR03 + max(0.0, object1->neutralHadronIsoDR03 + object1->photonIsoDR03 - object1->AEffDr03*object1->rhoPrime) ) / object1->pt;
3254 +  else if(variable == "invMass"){
3255 +    TLorentzVector fourVector1(object1->px, object1->py, object1->pz, object1->energy);
3256 +    TLorentzVector fourVector2(object2->px, object2->py, object2->pz, object2->energy);
3257 +    value = (fourVector1 + fourVector2).M();
3258 +  }
3259 +  else if(variable == "pt"){
3260 +    TLorentzVector fourVector1(object1->px, object1->py, object1->pz, object1->energy);
3261 +    TLorentzVector fourVector2(object2->px, object2->py, object2->pz, object2->energy);
3262 +    value = (fourVector1 + fourVector2).Pt();
3263 +  }
3264 +  else if(variable == "threeDAngle")
3265 +    {
3266 +      TVector3 threeVector1(object1->px, object1->py, object1->pz);
3267 +      TVector3 threeVector2(object2->px, object2->py, object2->pz);
3268 +      value = (threeVector1.Angle(threeVector2));
3269 +    }
3270 +  else if(variable == "alpha")
3271 +    {
3272 +      static const double pi = 3.1415926535897932384626433832795028841971693993751058;
3273 +      TVector3 threeVector1(object1->px, object1->py, object1->pz);
3274 +      TVector3 threeVector2(object2->px, object2->py, object2->pz);
3275 +      value = (pi-threeVector1.Angle(threeVector2));
3276 +    }
3277 +  else{cout << "WARNING: invalid variable '" << variable << "'\n"; value = -999;}
3278 +
3279 +  value = applyFunction(function, value);
3280 +
3281 +  return value;
3282   }
3283  
3284   //!electron-electron pair valueLookup
# Line 2948 | Line 3336 | OSUAnalysis::valueLookup (const BNelectr
3336  
3337    return value;
3338   }
3339 +
3340   //!electron-muon pair valueLookup
3341   double
3342   OSUAnalysis::valueLookup (const BNelectron* object1, const BNmuon* object2, string variable, string function, string &stringValue){
# Line 3012 | Line 3401 | OSUAnalysis::valueLookup (const BNelectr
3401    value = applyFunction(function, value);
3402  
3403    return value;
3404 < }
3404 > } // end electron-muon pair valueLookup
3405 >
3406  
3407   //!electron-jet pair valueLookup
3408   double
# Line 3022 | Line 3412 | OSUAnalysis::valueLookup (const BNelectr
3412  
3413    if(variable == "deltaPhi") value = fabs(deltaPhi(object1->phi,object2->phi));
3414    else if(variable == "deltaEta") value = fabs(object1->eta - object2->eta);
3415 +  else if(variable == "jetEta") value = object2->eta;
3416 +  else if(variable == "jetPhi") value = object2->phi;
3417 +  else if(variable == "electronEta") value = object1->eta;
3418 +  else if(variable == "electronPhi") value = object1->phi;
3419    else if(variable == "deltaR") value = deltaR(object1->eta,object1->phi,object2->eta,object2->phi);
3420    else if(variable == "invMass"){
3421      TLorentzVector fourVector1(object1->px, object1->py, object1->pz, object1->energy);
# Line 3049 | Line 3443 | OSUAnalysis::valueLookup (const BNelectr
3443    return value;
3444   }
3445  
3446 + //!photon-jet pair valueLookup
3447 + double
3448 + OSUAnalysis::valueLookup (const BNphoton* object1, const BNjet* object2, string variable, string function, string &stringValue){
3449 +
3450 +  double value = 0.0;
3451 +
3452 +  if(variable == "deltaPhi") value = fabs(deltaPhi(object1->phi,object2->phi));
3453 +  else if(variable == "deltaEta") value = fabs(object1->eta - object2->eta);
3454 +  else if(variable == "jetEta") value = object2->eta;
3455 +  else if(variable == "jetPhi") value = object2->phi;
3456 +  else if(variable == "photonEta") value = object1->eta;
3457 +  else if(variable == "photonPhi") value = object1->phi;
3458 +  else if(variable == "photonGenMotherId") value = object1->genMotherId;
3459 +  else if(variable == "deltaR") value = deltaR(object1->eta,object1->phi,object2->eta,object2->phi);
3460 +  else if(variable == "invMass"){
3461 +    TLorentzVector fourVector1(object1->px, object1->py, object1->pz, object1->energy);
3462 +    TLorentzVector fourVector2(object2->px, object2->py, object2->pz, object2->energy);
3463 +    value = (fourVector1 + fourVector2).M();
3464 +  }
3465 +  else if(variable == "pt"){
3466 +    TLorentzVector fourVector1(object1->px, object1->py, object1->pz, object1->energy);
3467 +    TLorentzVector fourVector2(object2->px, object2->py, object2->pz, object2->energy);
3468 +    value = (fourVector1 + fourVector2).Pt();
3469 +  }
3470 +  else if(variable == "threeDAngle")
3471 +    {
3472 +      TVector3 threeVector1(object1->px, object1->py, object1->pz);
3473 +      TVector3 threeVector2(object2->px, object2->py, object2->pz);
3474 +      value = (threeVector1.Angle(threeVector2));
3475 +    }
3476 +  else{cout << "WARNING: invalid variable '" << variable << "'\n"; value = -999;}
3477 +  value = applyFunction(function, value);
3478 +
3479 +  return value;
3480 + }
3481 +
3482 + // met-jet pair valueLookup
3483 + double
3484 + OSUAnalysis::valueLookup (const BNmet* object1, const BNjet* object2, string variable, string function, string &stringValue){
3485 +
3486 +  double value = 0.0;
3487 +
3488 +  if(variable == "deltaPhi") value = fabs(deltaPhi(object1->phi,object2->phi));
3489 +
3490 +  else{cout << "WARNING: invalid variable '" << variable << "'\n"; value = -999;}
3491 +  value = applyFunction(function, value);
3492 +
3493 +  return value;
3494 +
3495 + }  
3496 +
3497 +
3498 +
3499   //!muon-jet pair valueLookup
3500   double
3501   OSUAnalysis::valueLookup (const BNmuon* object1, const BNjet* object2, string variable, string function, string &stringValue){
# Line 3056 | Line 3503 | OSUAnalysis::valueLookup (const BNmuon*
3503    double value = 0.0;
3504  
3505    if(variable == "deltaPhi") value = fabs(deltaPhi(object1->phi,object2->phi));
3506 <  else if(variable == "deltaEta") value = fabs(object1->eta - object2->eta);
3506 >  else if(variable == "jetEta") value = object2->eta;
3507 >  else if(variable == "jetPhi") value = object2->phi;
3508 >  else if(variable == "muonEta") value = object1->eta;
3509 >  else if(variable == "muonPhi") value = object1->phi;
3510 >  else if(variable == "deltaEta") value = fabs(object1->eta - object2->eta);          
3511    else if(variable == "deltaR") value = deltaR(object1->eta,object1->phi,object2->eta,object2->phi);
3512    else if(variable == "invMass"){
3513      TLorentzVector fourVector1(object1->px, object1->py, object1->pz, object1->energy);
# Line 3083 | Line 3534 | OSUAnalysis::valueLookup (const BNmuon*
3534  
3535    return value;
3536   }
3086
3537   //!jet-jet pair valueLookup
3538   double
3539   OSUAnalysis::valueLookup (const BNjet* object1, const BNjet* object2, string variable, string function, string &stringValue){
# Line 3119 | Line 3569 | OSUAnalysis::valueLookup (const BNjet* o
3569  
3570    return value;
3571   }
3572 +
3573   //!electron-track pair valueLookup
3574   double
3575   OSUAnalysis::valueLookup (const BNelectron* object1, const BNtrack* object2, string variable, string function, string &stringValue){
# Line 3386 | Line 3837 | OSUAnalysis::valueLookup (const BNstop*
3837      for(BNprimaryvertexCollection::const_iterator vertex = primaryvertexs->begin (); vertex != primaryvertexs->end (); vertex++){
3838        vertex_rank++;
3839        int dist = sqrt((object->vx-vertex->x)*(object->vx-vertex->x) + \
3840 <                   (object->vy-vertex->y)*(object->vy-vertex->y) + \
3841 <                   (object->vz-vertex->z)*(object->vz-vertex->z));
3840 >                      (object->vy-vertex->y)*(object->vy-vertex->y) + \
3841 >                      (object->vz-vertex->z)*(object->vz-vertex->z));
3842  
3843        if(abs(dist) < abs(minDistToVertex)){
3844          value = vertex_rank;
# Line 3405 | Line 3856 | OSUAnalysis::valueLookup (const BNstop*
3856  
3857    return value;
3858  
3859 < }
3859 > } // end stop valueLookup
3860 >
3861  
3862  
3863  
# Line 3551 | Line 4003 | void OSUAnalysis::setObjectFlags(cut &cu
4003      string obj1, obj2;
4004      getTwoObjs(currentCut.inputCollection, obj1, obj2);
4005      if (inputType==obj1 ||
4006 <          inputType==obj2) {
4006 >        inputType==obj2) {
4007        // Do not add a cut to individualFlags or cumulativeFlags, if the cut is on a paired collection,
4008        // and the inputType is a member of the pair.
4009        // The cut will instead be applied when the setObjectFlags() is called for the paired collection.
# Line 3563 | Line 4015 | void OSUAnalysis::setObjectFlags(cut &cu
4015  
4016    for (uint object = 0; object != inputCollection->size(); object++){
4017  
4018 <    bool decision = true;//object passes if this cut doesn't cut on that type of object
4018 >    bool cutDecision = true;//object passes if this cut doesn't cut on that type of object
4019 >    bool plotDecision = true;
4020  
4021      if(currentCut.inputCollection == inputType){
4022  
# Line 3575 | Line 4028 | void OSUAnalysis::setObjectFlags(cut &cu
4028          else subcutDecisions.push_back(evaluateComparison(stringValue,currentCut.comparativeOperators.at(subcutIndex),currentCut.cutStringValues.at(subcutIndex)));
4029  
4030        }
4031 <      if(currentCut.numSubcuts == 1) decision = subcutDecisions.at(0);
4031 >      if(currentCut.numSubcuts == 1) cutDecision = subcutDecisions.at(0);
4032        else{
4033          bool tempDecision = true;
4034          for( int subcutIndex = 0;subcutIndex != currentCut.numSubcuts-1; subcutIndex++){
# Line 3584 | Line 4037 | void OSUAnalysis::setObjectFlags(cut &cu
4037            else if(currentCut.logicalOperators.at(subcutIndex) == "|"|| currentCut.logicalOperators.at(subcutIndex) == "||")
4038              tempDecision = subcutDecisions.at(subcutIndex) || subcutDecisions.at(subcutIndex+1);
4039          }
4040 <        decision = tempDecision;
4040 >        cutDecision = tempDecision;
4041        }
4042 +      //invert the cut for plotting if this cut is a veto
4043 +      if(currentCut.isVeto) plotDecision = !cutDecision;
4044 +      else plotDecision = cutDecision;
4045      }
4046  
4047 <    individualFlags.at(inputType).at(currentCutIndex).push_back(decision);
4047 >    individualFlags.at(inputType).at(currentCutIndex).push_back(make_pair(cutDecision,plotDecision));
4048  
4049 <    //set flags for objects that pass each cut AND all the previous cuts
4050 <    bool previousCumulativeFlag = true;
4049 >    //set flags for objects that pass this cut AND all the previous cuts
4050 >    bool previousCumulativeCutFlag = true;
4051 >    for(uint previousCutIndex = 0; previousCutIndex != currentCutIndex; previousCutIndex++){
4052 >      if(previousCumulativeCutFlag && individualFlags.at(inputType).at(previousCutIndex).at(object).first) previousCumulativeCutFlag = true;
4053 >      else{ previousCumulativeCutFlag = false; break;}
4054 >    }
4055 >    previousCumulativeCutFlag = previousCumulativeCutFlag && cutDecision;
4056 >    bool previousCumulativePlotFlag = true;
4057      for(uint previousCutIndex = 0; previousCutIndex != currentCutIndex; previousCutIndex++){
4058 <      if(previousCumulativeFlag && individualFlags.at(inputType).at(previousCutIndex).at(object)) previousCumulativeFlag = true;
4059 <      else{ previousCumulativeFlag = false; break;}
4058 >      if(previousCumulativePlotFlag && individualFlags.at(inputType).at(previousCutIndex).at(object).second) previousCumulativePlotFlag = true;
4059 >      else{ previousCumulativePlotFlag = false; break;}
4060      }
4061 <    cumulativeFlags.at(inputType).at(currentCutIndex).push_back(previousCumulativeFlag && decision);
4061 >    previousCumulativePlotFlag = previousCumulativePlotFlag && plotDecision;
4062 >
4063 >    cumulativeFlags.at(inputType).at(currentCutIndex).push_back(make_pair(previousCumulativeCutFlag,previousCumulativePlotFlag));
4064  
4065    }
4066  
# Line 3605 | Line 4069 | void OSUAnalysis::setObjectFlags(cut &cu
4069  
4070   template <class InputCollection1, class InputCollection2>
4071   void OSUAnalysis::setObjectFlags(cut &currentCut, uint currentCutIndex, flagMap &individualFlags, flagMap &cumulativeFlags, \
4072 <                                 InputCollection1 inputCollection1, InputCollection2 inputCollection2, vector<bool> flags1, vector<bool> flags2, string inputType){
4072 >                                 InputCollection1 inputCollection1, InputCollection2 inputCollection2, flagPair flags1, flagPair flags2, string inputType){
4073  
4074  
4075    bool sameObjects = false;
# Line 3621 | Line 4085 | void OSUAnalysis::setObjectFlags(cut &cu
4085    // Set them to true later, if any paired object passes (in which case both of its constituents should pass).
4086    if (currentCut.inputCollection == inputType) {
4087      for (uint object1 = 0; object1 != inputCollection1->size(); object1++) {
4088 <      individualFlags.at(obj1Type).at(currentCutIndex).push_back(false);
4089 <      cumulativeFlags.at(obj1Type).at(currentCutIndex).push_back(false);
4088 >      individualFlags.at(obj1Type).at(currentCutIndex).push_back(make_pair(false,false));
4089 >      cumulativeFlags.at(obj1Type).at(currentCutIndex).push_back(make_pair(false,false));
4090      }
4091      if (isTwoTypesOfObject) { // Only initialize the second object if it is different from the first.
4092        for (uint object2 = 0; object2 != inputCollection2->size(); object2++)  {
4093 <        individualFlags.at(obj2Type).at(currentCutIndex).push_back(false);
4094 <        cumulativeFlags.at(obj2Type).at(currentCutIndex).push_back(false);
4093 >        individualFlags.at(obj2Type).at(currentCutIndex).push_back(make_pair(false,false));
4094 >        cumulativeFlags.at(obj2Type).at(currentCutIndex).push_back(make_pair(false,false));
4095        }
4096      }
4097    }
# Line 3640 | Line 4104 | void OSUAnalysis::setObjectFlags(cut &cu
4104        if(sameObjects && object1 >= object2) continue;//account for duplicate pairs if both collections are the same
4105  
4106  
4107 <      bool decision = true;//object passes if this cut doesn't cut on that type of object
4107 >      bool cutDecision = true;//object passes if this cut doesn't cut on that type of object
4108 >      bool plotDecision = true;
4109  
4110        if(currentCut.inputCollection == inputType){
4111  
# Line 3652 | Line 4117 | void OSUAnalysis::setObjectFlags(cut &cu
4117            else subcutDecisions.push_back(evaluateComparison(stringValue,currentCut.comparativeOperators.at(subcutIndex),currentCut.cutStringValues.at(subcutIndex)));
4118          }
4119  
4120 <        if(currentCut.numSubcuts == 1) decision = subcutDecisions.at(0);
4120 >        if(currentCut.numSubcuts == 1) cutDecision = subcutDecisions.at(0);
4121          else{
4122            bool tempDecision = subcutDecisions.at(0);
4123            for( int subcutIndex = 1; subcutIndex < currentCut.numSubcuts; subcutIndex++){
# Line 3661 | Line 4126 | void OSUAnalysis::setObjectFlags(cut &cu
4126              else if(currentCut.logicalOperators.at(subcutIndex-1) == "|"|| currentCut.logicalOperators.at(subcutIndex-1) == "||")
4127                tempDecision = tempDecision || subcutDecisions.at(subcutIndex);
4128            }
4129 <          decision = tempDecision;
4129 >          cutDecision = tempDecision;
4130          }
4131 +        //invert the cut for plotting if this cut is a veto
4132 +        if(currentCut.isVeto) plotDecision = !cutDecision;
4133 +        else plotDecision = cutDecision;
4134 +      }
4135 +      individualFlags.at(inputType).at(currentCutIndex).push_back(make_pair(cutDecision,plotDecision));
4136 +      if (cutDecision && currentCut.inputCollection == inputType) {  // only set the flags for the individual objects if the pair object is being cut on
4137 +        individualFlags.at(obj1Type).at(currentCutIndex).at(object1).first = true;
4138 +        individualFlags.at(obj2Type).at(currentCutIndex).at(object2).first = true;
4139 +      }
4140 +      if (plotDecision && currentCut.inputCollection == inputType) {  // only set the flags for the individual objects if the pair object is being cut on
4141 +        individualFlags.at(obj1Type).at(currentCutIndex).at(object1).second = true;
4142 +        individualFlags.at(obj2Type).at(currentCutIndex).at(object2).second = true;
4143        }
4144 <      // if (decision) isPassObj1.at(object1) = true;
4145 <      // if (decision) isPassObj2.at(object2) = true;
4146 <      individualFlags.at(inputType).at(currentCutIndex).push_back(decision);
4147 <      if (decision && currentCut.inputCollection == inputType) {  // only set the flags for the individual objects if the pair object is being cut on
4148 <        individualFlags.at(obj1Type).at(currentCutIndex).at(object1) = true;
4149 <        individualFlags.at(obj2Type).at(currentCutIndex).at(object2) = true;
4144 >
4145 >      //set flags for objects that pass this cut AND all the previous cuts
4146 >      bool previousCumulativeCutFlag = true;
4147 >      for(uint previousCutIndex = 0; previousCutIndex != currentCutIndex; previousCutIndex++){
4148 >        if(previousCumulativeCutFlag && individualFlags.at(inputType).at(previousCutIndex).at(counter).first) previousCumulativeCutFlag = true;
4149 >        else{ previousCumulativeCutFlag = false; break;}
4150        }
4151 +      previousCumulativeCutFlag = previousCumulativeCutFlag && cutDecision;
4152  
4153 <      //set flags for objects that pass each cut AND all the previous cuts
3676 <      bool previousCumulativeFlag = true;
4153 >      bool previousCumulativePlotFlag = true;
4154        for(uint previousCutIndex = 0; previousCutIndex != currentCutIndex; previousCutIndex++){
4155 <        if(previousCumulativeFlag && individualFlags.at(inputType).at(previousCutIndex).at(counter)) previousCumulativeFlag = true;
4156 <        else{ previousCumulativeFlag = false; break;}
4155 >        if(previousCumulativePlotFlag && individualFlags.at(inputType).at(previousCutIndex).at(counter).second) previousCumulativePlotFlag = true;
4156 >        else{ previousCumulativePlotFlag = false; break;}
4157        }
4158 +      previousCumulativePlotFlag = previousCumulativePlotFlag && plotDecision;
4159 +      
4160        //apply flags for the components of the composite object as well
4161 <      bool currentCumulativeFlag = true;
4162 <      if(flags1.size() == 0 && flags2.size() == 0) currentCumulativeFlag = previousCumulativeFlag && decision;
4163 <      else if(flags1.size() == 0) currentCumulativeFlag = previousCumulativeFlag && decision && flags2.at(object2);
4164 <      else if(flags2.size() == 0) currentCumulativeFlag = previousCumulativeFlag && decision && flags1.at(object1);
4165 <      else currentCumulativeFlag = previousCumulativeFlag && decision && flags1.at(object1) && flags2.at(object2);
4166 <      cumulativeFlags.at(inputType).at(currentCutIndex).push_back(currentCumulativeFlag);
4167 <      if (currentCumulativeFlag && currentCut.inputCollection == inputType) {  // only set the flags for the individual objects if the pair object is being cut on
4168 <        cumulativeFlags.at(obj1Type).at(currentCutIndex).at(object1) = true && getPreviousCumulativeFlags(currentCutIndex, individualFlags, obj1Type, object1);
4169 <        cumulativeFlags.at(obj2Type).at(currentCutIndex).at(object2) = true && getPreviousCumulativeFlags(currentCutIndex, individualFlags, obj2Type, object2);
4161 >      bool currentCumulativeCutFlag = true;
4162 >      bool currentCumulativePlotFlag = true;
4163 >
4164 >      if(flags1.size() == 0 && flags2.size() == 0) currentCumulativeCutFlag = previousCumulativeCutFlag;
4165 >      else if(flags1.size() == 0) currentCumulativeCutFlag = previousCumulativeCutFlag && flags2.at(object2).first;
4166 >      else if(flags2.size() == 0) currentCumulativeCutFlag = previousCumulativeCutFlag && flags1.at(object1).first;
4167 >      else currentCumulativeCutFlag = previousCumulativeCutFlag && flags1.at(object1).first && flags2.at(object2).first;
4168 >
4169 >      if(flags1.size() == 0 && flags2.size() == 0) currentCumulativePlotFlag = previousCumulativePlotFlag;
4170 >      else if(flags1.size() == 0) currentCumulativePlotFlag = previousCumulativePlotFlag && flags2.at(object2).second;
4171 >      else if(flags2.size() == 0) currentCumulativePlotFlag = previousCumulativePlotFlag && flags1.at(object1).second;
4172 >      else currentCumulativePlotFlag = previousCumulativePlotFlag && flags1.at(object1).first && flags2.at(object2).second;
4173 >
4174 >      cumulativeFlags.at(inputType).at(currentCutIndex).push_back(make_pair(currentCumulativeCutFlag,currentCumulativePlotFlag));
4175 >
4176 >      if (currentCumulativeCutFlag && currentCut.inputCollection == inputType) {  // only set the flags for the individual objects if the pair object is being cut on
4177 >        cumulativeFlags.at(obj1Type).at(currentCutIndex).at(object1).first = true && getPreviousCumulativeFlags(currentCutIndex, individualFlags, obj1Type, object1, "cut");
4178 >        cumulativeFlags.at(obj2Type).at(currentCutIndex).at(object2).first = true && getPreviousCumulativeFlags(currentCutIndex, individualFlags, obj2Type, object2, "cut");
4179 >      }
4180 >
4181 >      if (currentCumulativePlotFlag && currentCut.inputCollection == inputType) {  // only set the flags for the individual objects if the pair object is being cut on
4182 >        cumulativeFlags.at(obj1Type).at(currentCutIndex).at(object1).second = true && getPreviousCumulativeFlags(currentCutIndex, individualFlags, obj1Type, object1, "plot");
4183 >        cumulativeFlags.at(obj2Type).at(currentCutIndex).at(object2).second = true && getPreviousCumulativeFlags(currentCutIndex, individualFlags, obj2Type, object2, "plot");
4184        }
4185 +
4186        counter++;
4187  
4188      } // end   for (uint object2 = 0; object2 != inputCollection2->size(); object2++)
# Line 3697 | Line 4191 | void OSUAnalysis::setObjectFlags(cut &cu
4191   }
4192  
4193  
4194 < bool OSUAnalysis::getPreviousCumulativeFlags(uint currentCutIndex, flagMap &individualFlags, string obj1Type, uint object1) {
4194 > bool OSUAnalysis::getPreviousCumulativeFlags(uint currentCutIndex, flagMap &individualFlags, string obj1Type, uint object1, string flagType) {
4195    // Return true iff for the collection obj1Type, the element with index object1 has individal flags set to true for
4196    // all cuts up to currentCutIndex
4197    bool previousCumulativeFlag = true;
4198    for (uint previousCutIndex = 0; previousCutIndex < currentCutIndex; previousCutIndex++) {
4199 <    if (previousCumulativeFlag && individualFlags.at(obj1Type).at(previousCutIndex).at(object1)) previousCumulativeFlag = true;
4199 >    bool tempFlag = false;
4200 >    if(flagType == "cut") tempFlag = individualFlags.at(obj1Type).at(previousCutIndex).at(object1).first;
4201 >    else if(flagType == "plot") tempFlag = individualFlags.at(obj1Type).at(previousCutIndex).at(object1).second;
4202 >
4203 >    if (previousCumulativeFlag && tempFlag) previousCumulativeFlag = true;
4204      else {
4205        previousCumulativeFlag = false; break;
4206      }
# Line 3711 | Line 4209 | bool OSUAnalysis::getPreviousCumulativeF
4209   }
4210  
4211  
4212 +
4213 +
4214 + template <class InputCollection>
4215 + void OSUAnalysis::assignTreeBranch(BranchSpecs parameters, InputCollection inputCollection, flagPair flags){
4216 +  // This function is similar to fill1DHistogram(), but instead of filling a histogram it assigns a value to a variable for the BNTree
4217 +
4218 +  if (BNTreeBranchVals_.count(parameters.name)==0) cout << "Error[assignTreeBranch]:  trying to assign value to " << parameters.name << " that does not have a branch set up.  Will likely seg fault." << endl;
4219 +  for (uint object = 0; object != inputCollection->size(); object++) {
4220 +
4221 +    if (!plotAllObjectsInPassingEvents_ && !flags.at(object).second) continue;
4222 +
4223 +    string inputVariable = parameters.inputVariable;
4224 +    string function = "";
4225 +    string stringValue = "";
4226 +    double value = valueLookup(&inputCollection->at(object), inputVariable, function, stringValue);
4227 +    BNTreeBranchVals_.at(parameters.name).push_back(value);
4228 +
4229 +  }
4230 + }
4231 +
4232 +
4233   template <class InputCollection>
4234 < void OSUAnalysis::fill1DHistogram(TH1* histo, histogram parameters, InputCollection inputCollection,vector<bool> flags, double scaleFactor){
4234 > void OSUAnalysis::fill1DHistogram(TH1* histo, histogram parameters, InputCollection inputCollection, flagPair flags, double scaleFactor){
4235 >
4236  
4237    for (uint object = 0; object != inputCollection->size(); object++){
4238  
4239 <    if(!plotAllObjectsInPassingEvents_ && !flags.at(object)) continue;
4239 >    if(!plotAllObjectsInPassingEvents_ && !flags.at(object).second) continue;
4240  
4241      string currentString = parameters.inputVariables.at(0);
4242      string inputVariable = "";
# Line 3733 | Line 4253 | void OSUAnalysis::fill1DHistogram(TH1* h
4253      string stringValue = "";
4254      double value = valueLookup(&inputCollection->at(object), inputVariable, function, stringValue);
4255      histo->Fill(value,scaleFactor);
4256 +
4257      if (printEventInfo_) {
4258        // Write information about event to screen, for testing purposes.
4259        cout << "  Info for event:  value for histogram " << histo->GetName() << ":  " << value << endl;
# Line 3742 | Line 4263 | void OSUAnalysis::fill1DHistogram(TH1* h
4263   }
4264  
4265   template <class InputCollection1, class InputCollection2>
4266 < void OSUAnalysis::fill1DHistogram(TH1* histo, histogram parameters, InputCollection1 inputCollection1, InputCollection2 inputCollection2, vector<bool> flags1, vector<bool> flags2, vector<bool> pairFlags, double scaleFactor){
4266 > void OSUAnalysis::fill1DHistogram(TH1* histo, histogram parameters, InputCollection1 inputCollection1, InputCollection2 inputCollection2, flagPair flags1, flagPair flags2, flagPair pairFlags, double scaleFactor){
4267  
4268    bool sameObjects = false;
4269    if(typeid(InputCollection1).name() == typeid(InputCollection2).name()) sameObjects = true;
# Line 3755 | Line 4276 | void OSUAnalysis::fill1DHistogram(TH1* h
4276  
4277        pairCounter++;
4278        //only take objects which have passed all cuts and pairs which have passed all cuts
4279 <      if(!plotAllObjectsInPassingEvents_ && !flags1.at(object1)) continue;
4280 <      if(!plotAllObjectsInPassingEvents_ && !flags2.at(object2)) continue;
4281 <      if(!plotAllObjectsInPassingEvents_ && !pairFlags.at(pairCounter)) continue;
4279 >      if(!plotAllObjectsInPassingEvents_ && !flags1.at(object1).second) continue;
4280 >      if(!plotAllObjectsInPassingEvents_ && !flags2.at(object2).second) continue;
4281 >      if(!plotAllObjectsInPassingEvents_ && !pairFlags.at(pairCounter).second) continue;
4282  
4283        string currentString = parameters.inputVariables.at(0);
4284        string inputVariable = "";
# Line 3782 | Line 4303 | void OSUAnalysis::fill1DHistogram(TH1* h
4303  
4304  
4305   template <class InputCollection>
4306 < void OSUAnalysis::fill2DHistogram(TH2* histo, histogram parameters, InputCollection inputCollection,vector<bool> flags, double scaleFactor){
4306 > void OSUAnalysis::fill2DHistogram(TH2* histo, histogram parameters, InputCollection inputCollection, flagPair flags, double scaleFactor){
4307  
4308    for (uint object = 0; object != inputCollection->size(); object++){
4309  
4310 <    if(!plotAllObjectsInPassingEvents_ && !flags.at(object)) continue;
4310 >    if(!plotAllObjectsInPassingEvents_ && !flags.at(object).second) continue;
4311  
4312      string stringValue = "";
4313      string currentString = parameters.inputVariables.at(0);
# Line 3823 | Line 4344 | void OSUAnalysis::fill2DHistogram(TH2* h
4344   }
4345  
4346   template <class InputCollection1, class InputCollection2>
4347 < void OSUAnalysis::fill2DHistogram(TH2* histo, histogram parameters, InputCollection1 inputCollection1, InputCollection2 inputCollection2, vector<bool> flags1, vector<bool> flags2, vector<bool> pairFlags, double scaleFactor){
4347 > void OSUAnalysis::fill2DHistogram(TH2* histo, histogram parameters, InputCollection1 inputCollection1, InputCollection2 inputCollection2, flagPair flags1, flagPair flags2, flagPair pairFlags, double scaleFactor){
4348  
4349    bool sameObjects = false;
4350    if(typeid(InputCollection1).name() == typeid(InputCollection2).name()) sameObjects = true;
# Line 3837 | Line 4358 | void OSUAnalysis::fill2DHistogram(TH2* h
4358        pairCounter++;
4359  
4360        //only take objects which have passed all cuts and pairs which have passed all cuts
4361 <      if(!plotAllObjectsInPassingEvents_ && !flags1.at(object1)) continue;
4362 <      if(!plotAllObjectsInPassingEvents_ && !flags2.at(object2)) continue;
4363 <      if(!plotAllObjectsInPassingEvents_ && !pairFlags.at(pairCounter)) continue;
4361 >      if(!plotAllObjectsInPassingEvents_ && !flags1.at(object1).second) continue;
4362 >      if(!plotAllObjectsInPassingEvents_ && !flags2.at(object2).second) continue;
4363 >      if(!plotAllObjectsInPassingEvents_ && !pairFlags.at(pairCounter).second) continue;
4364  
4365        string stringValue = "";
4366        string currentString = parameters.inputVariables.at(0);
# Line 3999 | Line 4520 | OSUAnalysis::chosenVertex ()
4520   {
4521    const BNprimaryvertex *chosenVertex = 0;
4522    if(cumulativeFlags.find ("primaryvertexs") != cumulativeFlags.end ()){
4523 <    vector<bool> vertexFlags;
4523 >    flagPair vertexFlags;
4524      for (int i = cumulativeFlags.at("primaryvertexs").size() - 1; i >= 0; i--){
4525        if (cumulativeFlags.at("primaryvertexs").at(i).size()){
4526          vertexFlags = cumulativeFlags.at("primaryvertexs").at(i);
# Line 4007 | Line 4528 | OSUAnalysis::chosenVertex ()
4528        }
4529      }
4530      for (uint vertexIndex = 0; vertexIndex != vertexFlags.size(); vertexIndex++){
4531 <      if(!vertexFlags.at(vertexIndex)) continue;
4531 >      if(!vertexFlags.at(vertexIndex).first) continue;
4532        chosenVertex = & primaryvertexs->at(vertexIndex);
4533        break;
4534      }
# Line 4023 | Line 4544 | OSUAnalysis::chosenMET ()
4544   {
4545    const BNmet *chosenMET = 0;
4546    if(cumulativeFlags.find ("mets") != cumulativeFlags.end ()){
4547 <    vector<bool> metFlags;
4547 >    flagPair metFlags;
4548      for (int i = cumulativeFlags.at("mets").size() - 1; i >= 0; i--){
4549        if (cumulativeFlags.at("mets").at(i).size()){
4550          metFlags = cumulativeFlags.at("mets").at(i);
# Line 4031 | Line 4552 | OSUAnalysis::chosenMET ()
4552        }
4553      }
4554      for (uint metIndex = 0; metIndex != metFlags.size(); metIndex++){
4555 <      if(!metFlags.at(metIndex)) continue;
4555 >      if(!metFlags.at(metIndex).first) continue;
4556        chosenMET = & mets->at(metIndex);
4557        break;
4558      }
# Line 4047 | Line 4568 | OSUAnalysis::chosenElectron ()
4568   {
4569    const BNelectron *chosenElectron = 0;
4570    if(cumulativeFlags.find ("electrons") != cumulativeFlags.end ()){
4571 <    vector<bool> electronFlags;
4571 >    flagPair electronFlags;
4572      for (int i = cumulativeFlags.at("electrons").size() - 1; i >= 0; i--){
4573        if (cumulativeFlags.at("electrons").at(i).size()){
4574          electronFlags = cumulativeFlags.at("electrons").at(i);
# Line 4055 | Line 4576 | OSUAnalysis::chosenElectron ()
4576        }
4577      }
4578      for (uint electronIndex = 0; electronIndex != electronFlags.size(); electronIndex++){
4579 <      if(!electronFlags.at(electronIndex)) continue;
4579 >      if(!electronFlags.at(electronIndex).first) continue;
4580        chosenElectron = & electrons->at(electronIndex);
4581        break;
4582      }
# Line 4066 | Line 4587 | OSUAnalysis::chosenElectron ()
4587    return chosenElectron;
4588   }
4589  
4590 +
4591   const BNmuon *
4592   OSUAnalysis::chosenMuon ()
4593   {
4594    const BNmuon *chosenMuon = 0;
4595    if(cumulativeFlags.find ("muons") != cumulativeFlags.end ()){
4596 <    vector<bool> muonFlags;
4596 >    flagPair muonFlags;
4597      for (int i = cumulativeFlags.at("muons").size() - 1; i >= 0; i--){
4598        if (cumulativeFlags.at("muons").at(i).size()){
4599          muonFlags = cumulativeFlags.at("muons").at(i);
# Line 4079 | Line 4601 | OSUAnalysis::chosenMuon ()
4601        }
4602      }
4603      for (uint muonIndex = 0; muonIndex != muonFlags.size(); muonIndex++){
4604 <      if(!muonFlags.at(muonIndex)) continue;
4604 >      if(!muonFlags.at(muonIndex).first) continue;
4605        chosenMuon = & muons->at(muonIndex);
4606        break;
4607      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines