DAS  3.0
Das Analysis System
getHighScalePUeventIDs.cc File Reference
#include <cstdlib>
#include <iostream>
#include <filesystem>
#include <vector>
#include "Core/Objects/interface/Event.h"
#include "Core/Objects/interface/Jet.h"
#include "Core/CommonTools/interface/binnings.h"
#include "Core/CommonTools/interface/DASOptions.h"
#include "Core/CommonTools/interface/toolbox.h"
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/info_parser.hpp>
#include <TH1.h>
#include <TString.h>
#include "Math/VectorUtil.h"
#include <darwin.h>
+ Include dependency graph for getHighScalePUeventIDs.cc:

Namespaces

 DAS
 

Functions

void getHighScalePUeventIDs (const vector< fs::path > &inputs, const fs::path &output, const pt::ptree &config, const int steering, const DT::Slice slice={1, 0})
 
int main (int argc, char *argv[])
 

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)
93 {
94  try {
96 
97  vector<fs::path> inputs;
98  fs::path output;
99 
100  auto options = DAS::Options(
101  "Get events with too large genpt from pileup "
102  "as a function of the event ID. This command "
103  "should be run on the output of the n-tupliser "
104  "directly" , DT::split | DT::config);
105  options.inputs("inputs", &inputs, "output from n-tupliser (expecting MB sample)")
106  .output("output", &output, "2-column output text file")
107  .arg<int>("minpt", "corrections.PUcleaning.minpt", "minimum pt to consider event");
108 
109  const auto& config = options(argc, argv);
110  const auto& slice = options.slice();
111  const int steering = options.steering();
112 
113  DAS::getHighScalePUeventIDs(inputs, output, config, steering, slice);
114  }
115  catch (boost::exception& e) {
116  DE::Diagnostic(e);
117  return EXIT_FAILURE;
118  }
119 
120  return EXIT_SUCCESS;
121 }
DYToLL_M-50_13TeV_pythia8_cff_GEN_SIM_RECOBEFMIX_DIGI_L1_DIGI2RAW_L1Reco_RECO.options
options
Definition: DYToLL_M-50_13TeV_pythia8_cff_GEN_SIM_RECOBEFMIX_DIGI_L1_DIGI2RAW_L1Reco_RECO.py:41
Darwin::Exceptions::Diagnostic
void Diagnostic(const boost::exception &e)
Definition: exceptions.h:131
Darwin::Tools::split
@ split
activate -k and -j to define slice
Definition: Options.h:26
DAS::getHighScalePUeventIDs
void getHighScalePUeventIDs(const vector< fs::path > &inputs, const fs::path &output, const pt::ptree &config, const int steering, const DT::Slice slice={1, 0})
Definition: getHighScalePUeventIDs.cc:45
Darwin::Tools::StandardInit
void StandardInit()
Definition: FileUtils.cc:29
Ntupliser_cfg.config
config
Definition: Ntupliser_cfg.py:264
jercExample.inputs
def inputs
Definition: jercExample.py:118
DAS::Options
Darwin::Tools::Options Options(const char *, int=Darwin::Tools::none)
Constructs Darwin options with the correct commit information.
Definition: DASOptions.cc:14