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 Attributes
MuonPtFilter Class Reference

#include <MuonPtFilter.h>

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

Public Member Functions

virtual bool filter (edm::Event &, const edm::EventSetup &) override
 
 MuonPtFilter (const edm::ParameterSet &)
 Constructor. More...
 
 ~MuonPtFilter ()
 Destructorquer. More...
 
- 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 Attributes

double theMinPt
 
std::string theSTAMuonLabel
 

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

EDFilter to select muons above certain Pt

Date:
2012/01/21 17:11:58
Revision:
1.3
Author
Silvia Goy Lopez - CERN silvi.nosp@m.a.go.nosp@m.y.lop.nosp@m.ez@c.nosp@m.ern.c.nosp@m.h

Definition at line 30 of file MuonPtFilter.h.

Constructor & Destructor Documentation

MuonPtFilter::MuonPtFilter ( const edm::ParameterSet pset)

Constructor.

Definition at line 27 of file MuonPtFilter.cc.

References edm::ParameterSet::getParameter(), LogDebug, and AlCaHLTBitMon_QueryRunRegistry::string.

28 {
29  // the name of the STA rec hits collection
30  theSTAMuonLabel = pset.getParameter<std::string>("SALabel");
31 
32  theMinPt = pset.getParameter<double>("minPt"); // pt min (GeV)
33 
34  LogDebug("MuonPt") << " SALabel : " << theSTAMuonLabel
35  << " Min Pt : " << theMinPt;
36 }
#define LogDebug(id)
T getParameter(std::string const &) const
std::string theSTAMuonLabel
Definition: MuonPtFilter.h:44
double theMinPt
Definition: MuonPtFilter.h:45
MuonPtFilter::~MuonPtFilter ( )

Destructorquer.

Destructor.

Definition at line 39 of file MuonPtFilter.cc.

39  {
40 }

Member Function Documentation

bool MuonPtFilter::filter ( edm::Event event,
const edm::EventSetup eventSetup 
)
overridevirtual

Implements edm::EDFilter.

Definition at line 43 of file MuonPtFilter.cc.

References muonTagProbeFilters_cff::staTracks.

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().

43  {
44  // Get the RecTrack collection from the event
46  event.getByLabel(theSTAMuonLabel, staTracks);
47 
48  reco::TrackCollection::const_iterator staTrack;
49 
50  for (staTrack = staTracks->begin(); staTrack != staTracks->end(); ++staTrack){
51  if (staTrack->pt() > theMinPt)
52  return true;
53  }
54 
55  return false;
56 }
std::string theSTAMuonLabel
Definition: MuonPtFilter.h:44
double theMinPt
Definition: MuonPtFilter.h:45

Member Data Documentation

double MuonPtFilter::theMinPt
private

Definition at line 45 of file MuonPtFilter.h.

std::string MuonPtFilter::theSTAMuonLabel
private

Definition at line 44 of file MuonPtFilter.h.