CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
ConfigurableAnalysis Class Reference

#include <CommonTools/UtilAlgos/src/ConfigurableAnalysis.cc>

Inheritance diagram for ConfigurableAnalysis:
edm::EDFilter edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 ConfigurableAnalysis (const edm::ParameterSet &)
 
 ~ConfigurableAnalysis () override=default
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDFilter () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void beginJob () override
 
void endJob () override
 
bool filter (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

std::vector< std::string > flows_
 
std::unique_ptr< NTuplerntupler_
 
std::unique_ptr< Plotterplotter_
 
std::unique_ptr< FilterSelectionsselections_
 
bool workAsASelector_
 

Additional Inherited Members

- Public Types inherited from edm::EDFilter
typedef EDFilter ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
typedef ProductRegistryHelper::TypeLabelList TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDFilter
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Description: <one line="" class="" summary>="">

Implementation: <Notes on="" implementation>="">

Definition at line 45 of file ConfigurableAnalysis.cc.

Constructor & Destructor Documentation

ConfigurableAnalysis::ConfigurableAnalysis ( const edm::ParameterSet iConfig)
explicit

Definition at line 74 of file ConfigurableAnalysis.cc.

References edm::EDConsumerBase::consumesCollector(), edm::ParameterSet::exists(), flows_, reco::get(), edm::ParameterSet::getParameter(), init, ntupler_, RecoTauValidation_cfi::plotPset, plotter_, selections_, AlCaHLTBitMon_QueryRunRegistry::string, and workAsASelector_.

75 {
76 
77  std::string moduleLabel = iConfig.getParameter<std::string>("@module_label");
78 
79  //configure inputag distributor
80  if (iConfig.exists("InputTags"))
82 
83  //configure the variable helper
85 
86  //list of selections
87  selections_ = std::make_unique<FilterSelections>(iConfig.getParameter<edm::ParameterSet>("Selections"), consumesCollector());
88 
89  //plotting device
91  if (!plotPset.empty()){
92  std::string plotterName = plotPset.getParameter<std::string>("ComponentName");
93  plotter_ = std::unique_ptr<Plotter>(PlotterFactory::get()->create(plotterName, plotPset));
94  }
95 
96  //ntupling device
97  edm::ParameterSet ntPset = iConfig.getParameter<edm::ParameterSet>("Ntupler");
98  if (!ntPset.empty()){
99  std::string ntuplerName=ntPset.getParameter<std::string>("ComponentName");
100  ntupler_ = std::unique_ptr<NTupler>(NTuplerFactory::get()->create(ntuplerName, ntPset));
101  }
102 
103  flows_ = iConfig.getParameter<std::vector<std::string> >("flows");
104  workAsASelector_ = iConfig.getParameter<bool>("workAsASelector");
105 
106  //vector of passed selections
107  produces<std::vector<bool> >();
108 
109  //ntupler needs to register its products
110  if (ntupler_) ntupler_->registerleaves(this);
111 }
T getParameter(std::string const &) const
int init
Definition: HydjetWrapper.h:67
bool exists(std::string const &parameterName) const
checks if a parameter exists
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
std::unique_ptr< NTupler > ntupler_
std::unique_ptr< Plotter > plotter_
std::unique_ptr< FilterSelections > selections_
T get(const Candidate &c)
Definition: component.h:55
std::vector< std::string > flows_
ConfigurableAnalysis::~ConfigurableAnalysis ( )
overridedefault

Member Function Documentation

void ConfigurableAnalysis::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDFilter.

Definition at line 208 of file ConfigurableAnalysis.cc.

209 {
210 }
void ConfigurableAnalysis::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDFilter.

Definition at line 214 of file ConfigurableAnalysis.cc.

References DEFINE_FWK_MODULE, plotter_, and selections_.

214  {
215  //print summary tables
216  selections_->print();
217  if (plotter_) plotter_->complete();
218 }
std::unique_ptr< Plotter > plotter_
std::unique_ptr< FilterSelections > selections_
bool ConfigurableAnalysis::filter ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 118 of file ConfigurableAnalysis.cc.

References accept(), create_public_lumi_plots::cumulative, flows_, iEvent, SFilter::inverted(), eostools::move(), Filter::name(), ntupler_, plotter_, edm::Event::put(), corrVsCorr::selection, selections_, mps_merge::separator, createPayload::skip, AlCaHLTBitMon_QueryRunRegistry::string, and workAsASelector_.

119 {
120  //will the filter pass or not.
121  bool majorGlobalAccept=false;
122 
123  auto passedProduct = std::make_unique<std::vector<bool>>(flows_.size(),false);
124  bool filledOnce=false;
125 
126  // loop the requested selections
128  //was this flow of filter actually asked for
129  bool skip=true;
130  unsigned int iFlow=0;
131  for (;iFlow!=flows_.size();++iFlow){if (flows_[iFlow]==selection->name()){skip=false; break;}}
132  if (skip) continue;
133 
134  //make a specific direction in the plotter
135  if (plotter_) plotter_->setDir(selection->name());
136 
137  // apply individual filters on the event
138  std::map<std::string, bool> accept=selection->acceptMap(iEvent);
139 
140  bool globalAccept=true;
143  std::string allButOne="allBut_";
144  std::string fullAccept="fullAccept";
145  std::string fullContent="fullContent";
146 
147  if (selection->makeContentPlots() && plotter_)
148  plotter_->fill(fullContent,iEvent);
149 
150  //loop the filters to make cumulative and allButOne job
151  for (FilterSelection::iterator filterIt=selection->begin(); filterIt!=selection->end();++filterIt){
152  SFilter & filter = (*filterIt);
153  // bool lastCut=((filterIt+1)==selection->end());
154 
155  //increment the directory name
156  cumulative+=separator;
157  if (filter.inverted()) cumulative+="not";
158  cumulative+=filter->name();
159  separator="_";
160 
161  if (accept[filter->name()]){
162  // if (globalAccept && selection->makeCumulativePlots() && !lastCut)
163  if (globalAccept && selection->makeCumulativePlots() && plotter_)
164  plotter_->fill(cumulative,iEvent);
165  }
166  else{
167  globalAccept=false;
168  // did all the others filter fire
169  bool goodForAllButThisOne=true;
170  for (std::map<std::string,bool>::iterator decision=accept.begin(); decision!=accept.end();++decision){
171  if (decision->first==filter->name()) continue;
172  if (!decision->second) {
173  goodForAllButThisOne=false;
174  break;}
175  }
176  if (goodForAllButThisOne && selection->makeAllButOnePlots() && plotter_){
177  plotter_->fill(allButOne+filter->name(),iEvent);
178  }
179  }
180 
181  }// loop over the filters in this selection
182 
183  if (globalAccept){
184  (*passedProduct)[iFlow]=true;
185  majorGlobalAccept=true;
186  //make final plots only if no cumulative plots
187  if (selection->makeFinalPlots() && !selection->makeCumulativePlots() && plotter_)
188  plotter_->fill(fullAccept,iEvent);
189 
190  //make the ntuple and put it in the event
191  if (selection->ntuplize() && !filledOnce && ntupler_){
192  ntupler_->fill(iEvent);
193  filledOnce=true;}
194  }
195 
196  }//loop the different filter order/number: loop the Selections
197 
198  iEvent.put(std::move(passedProduct));
199  if (workAsASelector_)
200  return majorGlobalAccept;
201  else
202  return true;
203 }
string separator
Definition: mps_merge.py:79
std::vector< FilterSelection >::iterator iterator
Definition: Selections.h:324
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
selection
main part
Definition: corrVsCorr.py:100
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:30
std::vector< SFilter >::iterator iterator
Definition: Selections.h:143
int iEvent
Definition: GenABIO.cc:224
const std::string & name()
Definition: Selections.h:38
bool filter(edm::Event &, const edm::EventSetup &) override
bool inverted()
Definition: Selections.h:84
std::unique_ptr< NTupler > ntupler_
std::unique_ptr< Plotter > plotter_
std::unique_ptr< FilterSelections > selections_
def move(src, dest)
Definition: eostools.py:511
std::vector< std::string > flows_

Member Data Documentation

std::vector<std::string> ConfigurableAnalysis::flows_
private

Definition at line 59 of file ConfigurableAnalysis.cc.

Referenced by ConfigurableAnalysis(), and filter().

std::unique_ptr<NTupler> ConfigurableAnalysis::ntupler_
private

Definition at line 57 of file ConfigurableAnalysis.cc.

Referenced by ConfigurableAnalysis(), and filter().

std::unique_ptr<Plotter> ConfigurableAnalysis::plotter_
private

Definition at line 56 of file ConfigurableAnalysis.cc.

Referenced by ConfigurableAnalysis(), endJob(), and filter().

std::unique_ptr<FilterSelections> ConfigurableAnalysis::selections_
private

Definition at line 55 of file ConfigurableAnalysis.cc.

Referenced by ConfigurableAnalysis(), endJob(), and filter().

bool ConfigurableAnalysis::workAsASelector_
private

Definition at line 60 of file ConfigurableAnalysis.cc.

Referenced by ConfigurableAnalysis(), and filter().