CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/RecoTracker/TkSeedingLayers/interface/OrderedSeedingHits.h

Go to the documentation of this file.
00001 #ifndef TkSeedingLayers_OrderedSeedingHits_H
00002 #define TkSeedingLayers_OrderedSeedingHits_H
00003 
00004 #include "RecoTracker/TkSeedingLayers/interface/SeedingHitSet.h"
00005 #include <vector>
00006 
00007 class OrderedSeedingHits {
00008 public:
00009 
00010   virtual ~OrderedSeedingHits(){}
00011   virtual unsigned int size() const = 0;
00012   virtual const SeedingHitSet & operator[](unsigned int i) const = 0;
00013 
00014 };
00015 
00016 #endif