Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:25

0001 #ifndef CalibMuon_DTCalibration_DTRecHitSegmentResidual_h
0002 #define CalibMuon_DTCalibration_DTRecHitSegmentResidual_h
0003 
0004 /*
0005  *  \author A. Vilela Pereira
0006  */
0007 
0008 class DTGeometry;
0009 class DTRecSegment4D;
0010 class DTRecHit1D;
0011 
0012 class DTRecHitSegmentResidual {
0013 public:
0014   DTRecHitSegmentResidual() {}
0015   ~DTRecHitSegmentResidual() {}
0016   float compute(const DTGeometry*, const DTRecHit1D&, const DTRecSegment4D&);
0017 
0018 private:
0019 };
0020 
0021 #endif