CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
SingleTopTChannelLeptonDQM Class Reference

define MonitorEnsembple to be used More...

#include "DQM/Physics/plugins/SingleTopTChannelLeptonDQM.h"

Inheritance diagram for SingleTopTChannelLeptonDQM:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

virtual void analyze (const edm::Event &event, const edm::EventSetup &setup)
 do this during the event loop More...
 
 SingleTopTChannelLeptonDQM (const edm::ParameterSet &cfg)
 default constructor More...
 
 ~SingleTopTChannelLeptonDQM ()
 default destructor More...
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

std::string objectType (const std::string &label)
 
std::string selectionStep (const std::string &label)
 

Private Attributes

edm::InputTag beamspot_
 beamspot More...
 
StringCutObjectSelector
< reco::BeamSpot > * 
beamspotSelect_
 string cut selector More...
 
std::map< std::string,
std::pair< edm::ParameterSet,
SingleTopTChannelLepton::MonitorEnsemble * > > 
selection_
 
std::vector< std::string > selectionOrder_
 
std::vector< std::string > triggerPaths_
 trigger paths More...
 
edm::InputTag triggerTable_
 trigger table More...
 
edm::InputTag vertex_
 primary vertex More...
 
StringCutObjectSelector
< reco::Vertex > * 
vertexSelect_
 string cut selector More...
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- 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 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

define MonitorEnsembple to be used

Module to apply a monitored selection of top like events in the semi-leptonic channel.

Plugin to apply a monitored selection of top like events with some minimal flexibility in the number and definition of the selection steps. To achieve this flexibility it employes the SelectionStep class. The MonitorEnsemble class is used to provide a well defined set of histograms to be monitored after each selection step. The SelectionStep class provides a flexible and intuitive selection via the StringCutParser. SelectionStep and MonitorEnsemble classes are interleaved. The monitoring starts after a preselection step (which is not monitored in the context of this module) with an instance of the MonitorEnsemble class. The following objects are supported for selection:

These types have to be present as prefix of the selection step paramter label separated from the rest of the label by a ':' (e.g. in the form "jets:step0"). The class expects selection labels of this type. They will be disentangled by the private helper functions objectType and seletionStep as declared below.

Definition at line 216 of file SingleTopTChannelLeptonDQM.h.

Constructor & Destructor Documentation

SingleTopTChannelLeptonDQM::SingleTopTChannelLeptonDQM ( const edm::ParameterSet cfg)

default constructor

Definition at line 812 of file SingleTopTChannelLeptonDQM.cc.

References beamspot_, beamspotSelect_, edm::ParameterSet::existsAs(), edm::ParameterSet::getParameter(), i, EgammaValidation_Wenu_cff::sel, selection_, selectionOrder_, selectionStep(), AlCaHLTBitMon_QueryRunRegistry::string, triggerPaths_, triggerTable_, vertex_, and vertexSelect_.

813 {
814  // configure preselection
815  edm::ParameterSet presel=cfg.getParameter<edm::ParameterSet>("preselection");
816  if( presel.existsAs<edm::ParameterSet>("trigger") ){
817  edm::ParameterSet trigger=presel.getParameter<edm::ParameterSet>("trigger");
818  triggerTable_=trigger.getParameter<edm::InputTag>("src");
819  triggerPaths_=trigger.getParameter<std::vector<std::string> >("select");
820  }
821  if( presel.existsAs<edm::ParameterSet>("vertex" ) ){
822  edm::ParameterSet vertex=presel.getParameter<edm::ParameterSet>("vertex");
823  vertex_= vertex.getParameter<edm::InputTag>("src");
825  }
826  if( presel.existsAs<edm::ParameterSet>("beamspot" ) ){
827  edm::ParameterSet beamspot=presel.getParameter<edm::ParameterSet>("beamspot");
828  beamspot_= beamspot.getParameter<edm::InputTag>("src");
830  }
831  // conifgure the selection
832  std::vector<edm::ParameterSet> sel=cfg.getParameter<std::vector<edm::ParameterSet> >("selection");
833  for(unsigned int i=0; i<sel.size(); ++i){
834  selectionOrder_.push_back(sel.at(i).getParameter<std::string>("label"));
835  selection_[selectionStep(selectionOrder_.back())] = std::make_pair(sel.at(i), new SingleTopTChannelLepton::MonitorEnsemble(selectionStep(selectionOrder_.back()).c_str(), cfg.getParameter<edm::ParameterSet>("setup"), cfg.getParameter<std::vector<edm::ParameterSet> >("selection")));
836  }
837 }
std::vector< std::string > selectionOrder_
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:184
std::vector< std::string > triggerPaths_
trigger paths
std::map< std::string, std::pair< edm::ParameterSet, SingleTopTChannelLepton::MonitorEnsemble * > > selection_
edm::InputTag vertex_
primary vertex
StringCutObjectSelector< reco::Vertex > * vertexSelect_
string cut selector
std::string selectionStep(const std::string &label)
edm::InputTag triggerTable_
trigger table
StringCutObjectSelector< reco::BeamSpot > * beamspotSelect_
string cut selector
SingleTopTChannelLeptonDQM::~SingleTopTChannelLeptonDQM ( )
inline

default destructor

Definition at line 221 of file SingleTopTChannelLeptonDQM.h.

References beamspotSelect_, and vertexSelect_.

221  {
222  if( vertexSelect_ ) delete vertexSelect_;
223  if( beamspotSelect_ ) delete beamspotSelect_;
224  // if( selection_ ) delete selection_;
225  };
StringCutObjectSelector< reco::Vertex > * vertexSelect_
string cut selector
StringCutObjectSelector< reco::BeamSpot > * beamspotSelect_
string cut selector

Member Function Documentation

void SingleTopTChannelLeptonDQM::analyze ( const edm::Event event,
const edm::EventSetup setup 
)
virtual

do this during the event loop

Implements edm::EDAnalyzer.

Definition at line 840 of file SingleTopTChannelLeptonDQM.cc.

References accept(), beamspot_, beamspotSelect_, edm::EDConsumerBase::consumesCollector(), first, edm::Event::getByLabel(), combine::key, edm::InputTag::label(), objectType(), SelectionStep< Object >::select(), selection_, selectionOrder_, selectionStep(), relval_parameters_module::step, patRefSel_refMuJets_cfi::step2, AlCaHLTBitMon_QueryRunRegistry::string, triggerPaths_, triggerTable_, vertex_, and vertexSelect_.

841 {
842  if(!triggerTable_.label().empty()){
844  if( !event.getByLabel(triggerTable_, triggerTable) ) return;
845  if(!accept(event, *triggerTable, triggerPaths_)) return;
846  }
847  //cout<<"trig passed"<<endl;
848  if(!beamspot_.label().empty()){
850  if( !event.getByLabel(beamspot_, beamspot) ) return;
851  if(!(*beamspotSelect_)(*beamspot)) return;
852  }
853 
854  if(!vertex_.label().empty()){
856  if( !event.getByLabel(vertex_, vertex) ) return;
857  edm::View<reco::Vertex>::const_iterator pv = vertex->begin();
858  //if ((pv->isFake()) || (pv->ndof() < 4) || (abs(pv->z())>24.) || (pv->position().Rho() > 2.0))
859  // cout << " pvs rho: " << pv->position().Rho() << " abs(z): " << abs(pv->z()) << " ndof: " << pv->ndof() << endl;
860  if(!(*vertexSelect_)(*pv)) return;
861  }
862 
863 
864  // apply selection steps
865  unsigned int passed=0;
866  for(std::vector<std::string>::const_iterator selIt=selectionOrder_.begin(); selIt!=selectionOrder_.end(); ++selIt){
867  std::string key = selectionStep(*selIt), type = objectType(*selIt);
868  if(selection_.find(key)!=selection_.end()){
869  if(type=="empty"){
870  selection_[key].second->fill(event, setup);
871  }
872  if(type=="presel" ){
873  // cout << "PRESELECTION" << endl;
874  selection_[key].second->fill(event, setup);
875  }
876  if(type=="elecs"){
878  if(step.select(event)){ ++passed;
879  selection_[key].second->fill(event, setup);
880  } else break;
881  }
882  if(type=="elecs/pf"){
884  if(step.select(event, "electron")){ ++passed;
885  selection_[key].second->fill(event, setup);
886  } else break;
887  }
888  if(type=="muons"){
890  if(step.select(event)){ ++passed;
891  selection_[key].second->fill(event, setup);
892  } else break;
893  }
894  if(type=="muons/pf"){
895  // cout << "MUON SELECTION" << endl;
897  if(step.select(event, "muon")){++passed;
898  selection_[key].second->fill(event, setup);
899 
900  } else break;
901  }
902  if(type=="jets" ){
904  if(step.select(event, setup)){ ++passed;
905  selection_[key].second->fill(event, setup);
906  } else break;
907  }
908  if(type=="jets/pf" ){
909  // cout << "JET SELECTION" << endl;
911 
912  std::string key2 = selectionStep(*(++selIt));
914 
915  if(step.select(event, setup)){ ++passed;
916  selection_[key].second->fill(event, setup);
917  }
918  else if (step2.select(event, setup)){ ++passed;
919  selection_[key2].second->fill(event, setup);
920  }
921  else break;
922  }
923  if(type=="jets/calo" ){
925  if(step.select(event, setup)){ ++passed;
926  selection_[key].second->fill(event, setup);
927  } else break;
928  }
929  if(type=="met" ){
931  if(step.select(event)){ ++passed;
932  selection_[key].second->fill(event, setup);
933  } else break;
934  }
935  }
936  }
937 }
std::vector< std::string > selectionOrder_
type
Definition: HCALResponse.h:21
std::string objectType(const std::string &label)
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:81
std::vector< std::string > triggerPaths_
trigger paths
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:26
std::map< std::string, std::pair< edm::ParameterSet, SingleTopTChannelLepton::MonitorEnsemble * > > selection_
edm::InputTag vertex_
primary vertex
StringCutObjectSelector< reco::Vertex > * vertexSelect_
string cut selector
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
bool first
Definition: L1TdeRCT.cc:79
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:390
std::string selectionStep(const std::string &label)
edm::InputTag triggerTable_
trigger table
std::string const & label() const
Definition: InputTag.h:42
list key
Definition: combine.py:13
StringCutObjectSelector< reco::BeamSpot > * beamspotSelect_
string cut selector
std::string SingleTopTChannelLeptonDQM::objectType ( const std::string &  label)
inlineprivate

deduce object type from ParameterSet label, the label is expected to be of type 'objectType:selectionStep'

Definition at line 233 of file SingleTopTChannelLeptonDQM.h.

Referenced by analyze().

233 { return label.substr(0, label.find(':')); };
std::string SingleTopTChannelLeptonDQM::selectionStep ( const std::string &  label)
inlineprivate

deduce selection step from ParameterSet label, the label is expected to be of type 'objectType:selectionStep'

Definition at line 236 of file SingleTopTChannelLeptonDQM.h.

Referenced by analyze(), and SingleTopTChannelLeptonDQM().

236 { return label.substr(label.find(':')+1); };

Member Data Documentation

edm::InputTag SingleTopTChannelLeptonDQM::beamspot_
private

beamspot

Definition at line 249 of file SingleTopTChannelLeptonDQM.h.

Referenced by analyze(), and SingleTopTChannelLeptonDQM().

StringCutObjectSelector<reco::BeamSpot>* SingleTopTChannelLeptonDQM::beamspotSelect_
private

string cut selector

Definition at line 251 of file SingleTopTChannelLeptonDQM.h.

Referenced by analyze(), SingleTopTChannelLeptonDQM(), and ~SingleTopTChannelLeptonDQM().

std::map<std::string, std::pair<edm::ParameterSet, SingleTopTChannelLepton::MonitorEnsemble*> > SingleTopTChannelLeptonDQM::selection_
private

this is the heart component of the plugin; std::string keeps a label the selection step for later identification, edm::ParameterSet keeps the configuration of the selection for the SelectionStep class, MonitoringEnsemble keeps an instance of the MonitorEnsemble class to be filled after each selection step

Definition at line 261 of file SingleTopTChannelLeptonDQM.h.

Referenced by analyze(), and SingleTopTChannelLeptonDQM().

std::vector<std::string> SingleTopTChannelLeptonDQM::selectionOrder_
private

needed to guarantee the selection order as defined by the order of ParameterSets in the selection vector as defined in the config

Definition at line 255 of file SingleTopTChannelLeptonDQM.h.

Referenced by analyze(), and SingleTopTChannelLeptonDQM().

std::vector<std::string> SingleTopTChannelLeptonDQM::triggerPaths_
private

trigger paths

Definition at line 242 of file SingleTopTChannelLeptonDQM.h.

Referenced by analyze(), and SingleTopTChannelLeptonDQM().

edm::InputTag SingleTopTChannelLeptonDQM::triggerTable_
private

trigger table

Definition at line 236 of file SingleTopTChannelLeptonDQM.h.

Referenced by analyze(), and SingleTopTChannelLeptonDQM().

edm::InputTag SingleTopTChannelLeptonDQM::vertex_
private

primary vertex

Definition at line 244 of file SingleTopTChannelLeptonDQM.h.

Referenced by analyze(), and SingleTopTChannelLeptonDQM().

StringCutObjectSelector<reco::Vertex>* SingleTopTChannelLeptonDQM::vertexSelect_
private

string cut selector

Definition at line 246 of file SingleTopTChannelLeptonDQM.h.

Referenced by analyze(), SingleTopTChannelLeptonDQM(), and ~SingleTopTChannelLeptonDQM().