test
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
BPHMuonEtaSelect Class Reference

#include <BPHMuonEtaSelect.h>

Inheritance diagram for BPHMuonEtaSelect:
BPHParticleEtaSelect BPHRecoSelect

Public Member Functions

virtual bool accept (const reco::Candidate &cand) const
 select muon More...
 
 BPHMuonEtaSelect (double eta)
 
virtual ~BPHMuonEtaSelect ()
 
- Public Member Functions inherited from BPHParticleEtaSelect
 BPHParticleEtaSelect (double eta)
 
double getEtaMax () const
 get current eta max More...
 
void setEtaMax (double eta)
 set eta max More...
 
virtual ~BPHParticleEtaSelect ()
 
- Public Member Functions inherited from BPHRecoSelect
virtual bool accept (const reco::Candidate &cand, const BPHRecoBuilder *build) const
 
 BPHRecoSelect ()
 
virtual ~BPHRecoSelect ()
 

Private Member Functions

 BPHMuonEtaSelect (const BPHMuonEtaSelect &x)
 
BPHMuonEtaSelectoperator= (const BPHMuonEtaSelect &x)
 

Additional Inherited Members

- Protected Member Functions inherited from BPHRecoSelect
const reco::Candidateget (const std::string &name, const BPHRecoBuilder *build) const
 

Detailed Description

Descrietaion: Class for muon selection by eta

Author
Paolo Ronchese INFN Padova

Definition at line 31 of file BPHMuonEtaSelect.h.

Constructor & Destructor Documentation

BPHMuonEtaSelect::BPHMuonEtaSelect ( double  eta)
inline

Constructor

Definition at line 37 of file BPHMuonEtaSelect.h.

virtual BPHMuonEtaSelect::~BPHMuonEtaSelect ( )
inlinevirtual

Destructor

Definition at line 41 of file BPHMuonEtaSelect.h.

41 {}
BPHMuonEtaSelect::BPHMuonEtaSelect ( const BPHMuonEtaSelect x)
private

Member Function Documentation

virtual bool BPHMuonEtaSelect::accept ( const reco::Candidate cand) const
inlinevirtual

select muon

Operations

Reimplemented from BPHParticleEtaSelect.

Definition at line 46 of file BPHMuonEtaSelect.h.

Referenced by Vispa.Gui.BoxContentDialog.BoxContentDialog::apply(), Vispa.Plugins.ConfigEditor.ToolDialog.ToolDialog::apply(), and esMonitoring.FDJsonServer::handle_accept().

46  {
47  if ( reinterpret_cast<const pat::Muon*>( &cand ) == 0 ) return false;
48  return BPHParticleEtaSelect::accept( cand );
49  }
virtual bool accept(const reco::Candidate &cand) const
select particle
BPHMuonEtaSelect& BPHMuonEtaSelect::operator= ( const BPHMuonEtaSelect x)
private