1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef Alignment_CommonAlignmentAlgorithm_AlignmentCSCOverlapSelector_h
#define Alignment_CommonAlignmentAlgorithm_AlignmentCSCOverlapSelector_h
#include <vector>
#include "DataFormats/TrackReco/interface/Track.h"
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
namespace edm {
class Event;
class ParameterSet;
} // namespace edm
class TrackingRecHit;
class AlignmentCSCOverlapSelector {
public:
typedef std::vector<const reco::Track *> Tracks;
/// constructor
AlignmentCSCOverlapSelector(const edm::ParameterSet &iConfig);
/// destructor
~AlignmentCSCOverlapSelector();
/// select tracks
Tracks select(const Tracks &tracks, const edm::Event &iEvent) const;
static void fillPSetDescription(edm::ParameterSetDescription &desc);
private:
int m_station;
unsigned int m_minHitsPerChamber;
};
#endif
|