File indexing completed on 2024-09-07 04:37:40
0001 #ifndef CSCSegment_CSCSegmentAlgorithm_h
0002 #define CSCSegment_CSCSegmentAlgorithm_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #include <DataFormats/CSCRecHit/interface/CSCRecHit2DCollection.h>
0017 #include <DataFormats/CSCRecHit/interface/CSCSegment.h>
0018 #include <Geometry/CSCGeometry/interface/CSCChamber.h>
0019
0020 #include <FWCore/Framework/interface/Frameworkfwd.h>
0021 #include <vector>
0022
0023 class CSCSegmentAlgorithm {
0024 public:
0025
0026 explicit CSCSegmentAlgorithm(const edm::ParameterSet&) {}
0027
0028 virtual ~CSCSegmentAlgorithm() {}
0029
0030
0031
0032 virtual std::vector<CSCSegment> run(const CSCChamber* chamber, const std::vector<const CSCRecHit2D*>& rechits) = 0;
0033
0034 private:
0035 };
0036
0037 #endif