Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef RecoTracker_MkFit_MkFitClusterIndexToHit_h
0002 #define RecoTracker_MkFit_MkFitClusterIndexToHit_h
0003 
0004 #include <vector>
0005 
0006 class TrackingRecHit;
0007 
0008 class MkFitClusterIndexToHit {
0009 public:
0010   MkFitClusterIndexToHit() = default;
0011 
0012   std::vector<TrackingRecHit const*>& hits() { return hits_; }
0013   std::vector<TrackingRecHit const*> const& hits() const { return hits_; }
0014 
0015 private:
0016   // Indexed by cluster index
0017   std::vector<TrackingRecHit const*> hits_;
0018 };
0019 
0020 #endif