DAS  3.0
Das Analysis System
getSumWeights.cc File Reference
#include <bitset>
#include <cmath>
#include <cstdlib>
#include <iostream>
#include <TChain.h>
#include <TFile.h>
#include <TH1.h>
#include "Core/CommonTools/interface/DASOptions.h"
#include "Core/Objects/interface/Event.h"
#include <darwin.h>
+ Include dependency graph for getSumWeights.cc:

Namespaces

 DAS
 
 DAS::Normalisation
 

Enumerations

enum  { WEIGHT = 0b001, SIGN = 0b010, CUTOFF = 0b100 }
 

Functions

void getSumWeights (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[] 
)
139 {
140  try {
142 
143  vector<fs::path> inputs;
144  fs::path output;
145 
146  auto options = DAS::Options("Get the sum of the weights.", DT::split | DT::config);
147  options.inputs("inputs", &inputs, "input ROOT file(s) or directory")
148  .output("output", &output, "output ROOT file")
149  .arg<string>("mode", "corrections.weights.mode",
150  "apply generator weight (`weight`), apply sign only (`signOnly`), "
151  "just count the number of events (`count`)")
152  .arg<float>("maxAbsValue", "corrections.weights.maxAbsValue",
153  "Maximum absolute weight to consider (0 to run without cut)");
154 
155  const auto& config = options(argc, argv);
156  const auto& slice = options.slice();
157  const int steering = options.steering();
158 
159  DAS::Normalisation::getSumWeights(inputs, output, config, steering, slice);
160  }
161  catch (boost::exception& e) {
162  DE::Diagnostic(e);
163  return EXIT_FAILURE;
164  }
165 
166  return EXIT_SUCCESS;
167 }
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
DAS::Normalisation::getSumWeights
void getSumWeights(const vector< fs::path > &inputs, const fs::path &output, const pt::ptree &config, const int steering, const DT::Slice slice={1, 0})
Definition: getSumWeights.cc:41
Darwin::Tools::split
@ split
activate -k and -j to define slice
Definition: Options.h:26
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