File indexing completed on 2025-02-05 23:50:57
0001 #ifndef Alignment_CommonAlignmentAlgorithm_AlignmentCSCOverlapSelector_h
0002 #define Alignment_CommonAlignmentAlgorithm_AlignmentCSCOverlapSelector_h
0003
0004 #include <vector>
0005 #include "DataFormats/TrackReco/interface/Track.h"
0006 #include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
0007
0008 namespace edm {
0009 class Event;
0010 class ParameterSet;
0011 }
0012
0013 class TrackingRecHit;
0014
0015 class AlignmentCSCOverlapSelector {
0016 public:
0017 typedef std::vector<const reco::Track *> Tracks;
0018
0019
0020 AlignmentCSCOverlapSelector(const edm::ParameterSet &iConfig);
0021
0022
0023 ~AlignmentCSCOverlapSelector();
0024
0025
0026 Tracks select(const Tracks &tracks, const edm::Event &iEvent) const;
0027
0028 static void fillPSetDescription(edm::ParameterSetDescription &desc);
0029
0030 private:
0031 int m_station;
0032 unsigned int m_minHitsPerChamber;
0033 };
0034
0035 #endif