CMS 3D CMS Logo

TSGSmart.cc
Go to the documentation of this file.
2 
8 
10  theEtaBound = pset.getParameter<double>("EtaBound");
11 
12  // FIXME??
13  edm::ParameterSet creatorPSet;
14  creatorPSet.addParameter<std::string>("propagator", "PropagatorWithMaterial");
15 
16  edm::ParameterSet PairPSet = pset.getParameter<edm::ParameterSet>("PixelPairGeneratorSet");
17  edm::ParameterSet pairhitsfactoryPSet = PairPSet.getParameter<edm::ParameterSet>("OrderedHitsFactoryPSet");
18  std::string pairhitsfactoryName = pairhitsfactoryPSet.getParameter<std::string>("ComponentName");
19 
20  thePairGenerator = std::make_unique<SeedGeneratorFromRegionHits>(
21  OrderedHitsGeneratorFactory::get()->create(pairhitsfactoryName, pairhitsfactoryPSet, iC),
22  nullptr,
23  SeedCreatorFactory::get()->create("SeedFromConsecutiveHitsCreator", creatorPSet));
24 
25  edm::ParameterSet TripletPSet = pset.getParameter<edm::ParameterSet>("PixelTripletGeneratorSet");
26  edm::ParameterSet triplethitsfactoryPSet = TripletPSet.getParameter<edm::ParameterSet>("OrderedHitsFactoryPSet");
27  std::string triplethitsfactoryName = triplethitsfactoryPSet.getParameter<std::string>("ComponentName");
28 
29  theTripletGenerator = std::make_unique<SeedGeneratorFromRegionHits>(
30  OrderedHitsGeneratorFactory::get()->create(triplethitsfactoryName, triplethitsfactoryPSet, iC),
31  nullptr,
32  SeedCreatorFactory::get()->create("SeedFromConsecutiveHitsCreator", creatorPSet));
33 
34  edm::ParameterSet MixedPSet = pset.getParameter<edm::ParameterSet>("MixedGeneratorSet");
35  edm::ParameterSet mixedhitsfactoryPSet = MixedPSet.getParameter<edm::ParameterSet>("OrderedHitsFactoryPSet");
36  std::string mixedhitsfactoryName = mixedhitsfactoryPSet.getParameter<std::string>("ComponentName");
37 
38  theMixedGenerator = std::make_unique<SeedGeneratorFromRegionHits>(
39  OrderedHitsGeneratorFactory::get()->create(mixedhitsfactoryName, mixedhitsfactoryPSet, iC),
40  nullptr,
41  SeedCreatorFactory::get()->create("SeedFromConsecutiveHitsCreator", creatorPSet));
42 }
43 
44 TSGSmart::~TSGSmart() = default;
45 
47  const edm::Event &ev,
48  const edm::EventSetup &es,
49  const TrackingRegion &region) {
50  if (fabs(region.direction().eta()) > theEtaBound) {
51  theMixedGenerator->run(seeds, region, ev, es);
52  } else {
53  theTripletGenerator->run(seeds, region, ev, es);
54  if (seeds.empty())
55  thePairGenerator->run(seeds, region, ev, es);
56  }
57 }
T getParameter(std::string const &) const
TSGSmart(const edm::ParameterSet &pset, edm::ConsumesCollector &iC)
Definition: TSGSmart.cc:9
bool ev
~TSGSmart() override
void run(TrajectorySeedCollection &seeds, const edm::Event &ev, const edm::EventSetup &es, const TrackingRegion &region) override
Definition: TSGSmart.cc:46
GlobalVector const & direction() const
the direction around which region is constructed
double theEtaBound
Definition: TSGSmart.h:28
std::vector< TrajectorySeed > TrajectorySeedCollection
void addParameter(std::string const &name, T const &value)
Definition: ParameterSet.h:124
std::unique_ptr< SeedGeneratorFromRegionHits > theTripletGenerator
Definition: TSGSmart.h:25
std::unique_ptr< SeedGeneratorFromRegionHits > thePairGenerator
Definition: TSGSmart.h:24
std::unique_ptr< SeedGeneratorFromRegionHits > theMixedGenerator
Definition: TSGSmart.h:26
T eta() const
Definition: PV3DBase.h:73