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
DTCalibMuonSelection Class Reference

#include <DTCalibMuonSelection.h>

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

Public Member Functions

 DTCalibMuonSelection (const edm::ParameterSet &)
 
 ~DTCalibMuonSelection ()
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDFilter ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 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
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

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

Private Attributes

double etaMax
 
double etaMin
 
edm::InputTag muonList
 
double ptMin
 

Additional Inherited Members

- Public Types inherited from edm::EDFilter
typedef EDFilter ModuleType
 
- Public Types inherited from edm::ProducerBase
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 &)
 
- 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

Definition at line 15 of file DTCalibMuonSelection.h.

Constructor & Destructor Documentation

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

Definition at line 22 of file DTCalibMuonSelection.cc.

References HLT_25ns14e33_v1_cff::etaMax, HLT_25ns14e33_v1_cff::etaMin, edm::ParameterSet::getParameter(), and PtMinSelector_cfg::ptMin.

23 {
24  muonList = iConfig.getParameter<edm::InputTag>("src");
25  etaMin = iConfig.getParameter<double>("etaMin");
26  etaMax = iConfig.getParameter<double>("etaMax");
27  ptMin = iConfig.getParameter<double>("ptMin");
28 }
T getParameter(std::string const &) const
DTCalibMuonSelection::~DTCalibMuonSelection ( )

Definition at line 31 of file DTCalibMuonSelection.cc.

31 { }

Member Function Documentation

void DTCalibMuonSelection::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDFilter.

Definition at line 66 of file DTCalibMuonSelection.cc.

66  {
67 }
void DTCalibMuonSelection::endJob ( void  )
privatevirtual

Reimplemented from edm::EDFilter.

Definition at line 72 of file DTCalibMuonSelection.cc.

72  {
73 }
bool DTCalibMuonSelection::filter ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
privatevirtual

Implements edm::EDFilter.

Definition at line 34 of file DTCalibMuonSelection.cc.

References HLT_25ns14e33_v1_cff::etaMax, HLT_25ns14e33_v1_cff::etaMin, edm::Event::getByLabel(), PtMinSelector_cfg::ptMin, and query::result.

Referenced by Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::filter(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::find(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::setDataAccessor(), and Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::switchCenterView().

35 {
36  bool result = false;
37 
38  //Retrieve the muons list
39  Handle<MuonCollection> MuHandle;
40  iEvent.getByLabel(muonList,MuHandle);
41 
42  for (MuonCollection::const_iterator nmuon = MuHandle->begin(); nmuon != MuHandle->end(); ++nmuon) {
43 
44  double ptMuon(0.);
45  double etaMuon(-999.);
46 
47  if(nmuon->isGlobalMuon()){
48  ptMuon = nmuon->globalTrack()->pt();
49  etaMuon = nmuon->globalTrack()->eta();
50  }
51  else continue;
52 
53  if(ptMuon > ptMin &&etaMuon > etaMin && etaMuon < etaMax){
54  result = true;
55  break;
56  }
57 
58  }
59 
60  return result;
61 }
tuple result
Definition: query.py:137
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:413

Member Data Documentation

double DTCalibMuonSelection::etaMax
private

Definition at line 32 of file DTCalibMuonSelection.h.

double DTCalibMuonSelection::etaMin
private

Definition at line 31 of file DTCalibMuonSelection.h.

edm::InputTag DTCalibMuonSelection::muonList
private

Definition at line 29 of file DTCalibMuonSelection.h.

double DTCalibMuonSelection::ptMin
private

Definition at line 33 of file DTCalibMuonSelection.h.