CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackerSeedGenerator.h
Go to the documentation of this file.
1 #ifndef RecoMuon_TrackerSeedGenerator_H
2 #define RecoMuon_TrackerSeedGenerator_H
3 
11 
12 class Trajectory;
13 class TrackingRegion;
14 class MuonServiceProxy;
15 class TrackerTopology;
16 
17 namespace edm {class ParameterSet; class Event; class EventSetup; class ConsumesCollector;}
18 
20 
21 public:
22  typedef std::vector<TrajectorySeed> BTSeedCollection;
23 
25 
26  typedef std::pair<const Trajectory*, reco::TrackRef> TrackCand;
27 
28  virtual void init(const MuonServiceProxy *service);
29 
31  virtual ~TrackerSeedGenerator() {}
32 
33  virtual void trackerSeeds(const TrackCand&, const TrackingRegion&, const TrackerTopology *, BTSeedCollection &);
34 
35  virtual void setEvent(const edm::Event&);
36 
37  const edm::Event *getEvent() const { return theEvent;}
38 
39 private:
40 
41  virtual void run(TrajectorySeedCollection &seeds,
42  const edm::Event &ev, const edm::EventSetup &es, const TrackingRegion& region) {}
43  protected:
46 
47 };
48 
49 #endif
50 
std::pair< const Trajectory *, reco::TrackRef > TrackCand
virtual void trackerSeeds(const TrackCand &, const TrackingRegion &, const TrackerTopology *, BTSeedCollection &)
bool ev
const edm::Event * theEvent
virtual void init(const MuonServiceProxy *service)
std::vector< TrajectorySeed > TrajectorySeedCollection
const edm::Event * getEvent() const
virtual void run(TrajectorySeedCollection &seeds, const edm::Event &ev, const edm::EventSetup &es, const TrackingRegion &region)
const MuonServiceProxy * theProxyService
std::vector< TrajectorySeed > BTSeedCollection
virtual ~TrackerSeedGenerator()
destructor
virtual void setEvent(const edm::Event &)