Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:12

0001 #ifndef RecoLocalMuon_ME0RecHitStandardAlgo_H
0002 #define RecoLocalMuon_ME0RecHitStandardAlgo_H
0003 
0004 /** \class ME0RecHitStandardAlgo
0005  *  Concrete implementation of ME0RecHitBaseAlgo.
0006  *
0007  *  $Date: 2014/02/04 10:16:36 $
0008  *  $Revision: 1.1 $
0009  *  \author M. Maggi -- INFN Bari
0010  */
0011 #include "RecoLocalMuon/GEMRecHit/interface/ME0RecHitBaseAlgo.h"
0012 
0013 class ME0RecHitStandardAlgo : public ME0RecHitBaseAlgo {
0014 public:
0015   /// Constructor
0016   ME0RecHitStandardAlgo(const edm::ParameterSet& config);
0017 
0018   /// Destructor
0019   ~ME0RecHitStandardAlgo() override;
0020 
0021   // Operations
0022 
0023   /// Pass the Event Setup to the algo at each event
0024   void setES(const edm::EventSetup& setup) override;
0025 
0026   bool compute(const ME0DigiPreReco& digi, LocalPoint& point, LocalError& error) const override;
0027 };
0028 #endif