Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:36

0001 #ifndef HeavyFlavorAnalysis_SpecificDecay_BPHParticleNeutralVeto_h
0002 #define HeavyFlavorAnalysis_SpecificDecay_BPHParticleNeutralVeto_h
0003 /** \class BPHParticleNeutralVeto
0004  *
0005  *  Description: 
0006  *     Class for neutral particle rejection
0007  *
0008  *  \author Paolo Ronchese INFN Padova
0009  *
0010  */
0011 
0012 //----------------------
0013 // Base Class Headers --
0014 //----------------------
0015 #include "HeavyFlavorAnalysis/RecoDecay/interface/BPHRecoSelect.h"
0016 
0017 //------------------------------------
0018 // Collaborating Class Declarations --
0019 //------------------------------------
0020 #include "DataFormats/RecoCandidate/interface/RecoCandidate.h"
0021 
0022 //---------------
0023 // C++ Headers --
0024 //---------------
0025 
0026 //              ---------------------
0027 //              -- Class Interface --
0028 //              ---------------------
0029 
0030 class BPHParticleNeutralVeto : public BPHRecoSelect {
0031 public:
0032   /** Constructor
0033    */
0034   BPHParticleNeutralVeto() {}
0035 
0036   // deleted copy constructor and assignment operator
0037   BPHParticleNeutralVeto(const BPHParticleNeutralVeto& x) = delete;
0038   BPHParticleNeutralVeto& operator=(const BPHParticleNeutralVeto& x) = delete;
0039 
0040   /** Destructor
0041    */
0042   ~BPHParticleNeutralVeto() override = default;
0043 
0044   /** Operations
0045    */
0046   /// select charged particles
0047   bool accept(const reco::Candidate& cand) const override { return (cand.charge() != 0); }
0048 };
0049 
0050 #endif