CMS 3D CMS Logo

BPHFitSelect.h
Go to the documentation of this file.
1 #ifndef HeavyFlavorAnalysis_RecoDecay_BPHFitSelect_h
2 #define HeavyFlavorAnalysis_RecoDecay_BPHFitSelect_h
3 
12 //----------------------
13 // Base Class Headers --
14 //----------------------
15 
16 
17 //------------------------------------
18 // Collaborating Class Declarations --
19 //------------------------------------
20 class BPHKinematicFit;
21 
22 //---------------
23 // C++ Headers --
24 //---------------
25 
26 
27 // ---------------------
28 // -- Class Interface --
29 // ---------------------
30 
31 class BPHFitSelect {
32 
33  public:
34 
37  BPHFitSelect();
38 
41  virtual ~BPHFitSelect();
42 
45  virtual bool accept( const BPHKinematicFit& cand ) const = 0;
47 
48  private:
49 
50  // private copy and assigment constructors
51  BPHFitSelect ( const BPHFitSelect& x );
52  BPHFitSelect& operator=( const BPHFitSelect& x );
53 
54 };
55 
56 
57 #endif
58 
virtual bool accept(const BPHKinematicFit &cand) const =0
accept function
virtual ~BPHFitSelect()
Definition: BPHFitSelect.cc:37
BPHFitSelect & operator=(const BPHFitSelect &x)