CMS 3D CMS Logo

TSGForOI.cc
Go to the documentation of this file.
1 
9 
10 #include <memory>
11 
12 using namespace edm;
13 using namespace std;
14 
16  src_(consumes<reco::TrackCollection>(iConfig.getParameter<edm::InputTag>("src"))),
17  numOfMaxSeedsParam_(iConfig.getParameter<uint32_t>("maxSeeds")),
18  numOfLayersToTry_(iConfig.getParameter<int32_t>("layersToTry")),
19  numOfHitsToTry_(iConfig.getParameter<int32_t>("hitsToTry")),
20  fixedErrorRescalingForHits_(iConfig.getParameter<double>("fixedErrorRescaleFactorForHits")),
21  fixedErrorRescalingForHitless_(iConfig.getParameter<double>("fixedErrorRescaleFactorForHitless")),
22  adjustErrorsDynamicallyForHits_(iConfig.getParameter<bool>("adjustErrorsDynamicallyForHits")),
23  adjustErrorsDynamicallyForHitless_(iConfig.getParameter<bool>("adjustErrorsDynamicallyForHitless")),
24  estimatorName_(iConfig.getParameter<std::string>("estimator")),
25  minEtaForTEC_(iConfig.getParameter<double>("minEtaForTEC")),
26  maxEtaForTOB_(iConfig.getParameter<double>("maxEtaForTOB")),
27  useHitLessSeeds_(iConfig.getParameter<bool>("UseHitLessSeeds")),
28  useStereoLayersInTEC_(iConfig.getParameter<bool>("UseStereoLayersInTEC")),
29  updator_(new KFUpdator()),
30  measurementTrackerTag_(consumes<MeasurementTrackerEvent>(iConfig.getParameter<edm::InputTag>("MeasurementTrackerEvent"))),
31  pT1_(iConfig.getParameter<double>("pT1")),
32  pT2_(iConfig.getParameter<double>("pT2")),
33  pT3_(iConfig.getParameter<double>("pT3")),
34  eta1_(iConfig.getParameter<double>("eta1")),
35  eta2_(iConfig.getParameter<double>("eta2")),
36  SF1_(iConfig.getParameter<double>("SF1")),
37  SF2_(iConfig.getParameter<double>("SF2")),
38  SF3_(iConfig.getParameter<double>("SF3")),
39  SF4_(iConfig.getParameter<double>("SF4")),
40  SF5_(iConfig.getParameter<double>("SF5")),
41  tsosDiff_(iConfig.getParameter<double>("tsosDiff")),
42  theCategory(string("Muon|RecoMuon|TSGForOI"))
43 {
44  produces<std::vector<TrajectorySeed> >();
45 }
46 
47 
49 }
50 
51 
54  unsigned int numOfMaxSeeds = numOfMaxSeedsParam_;
55  unsigned int numSeedsMade=0;
56  bool analysedL2 = false;
57  bool foundHitlessSeed = false;
58  unsigned int layerCount = 0;
59 
60 
63 
65  edm::Handle<MeasurementTrackerEvent> measurementTrackerH;
68  edm::ESHandle<Propagator> propagatorAlongH;
69  edm::ESHandle<Propagator> propagatorOppositeH;
70  edm::ESHandle<TrackerGeometry> tmpTkGeometryH;
72 
73  iSetup.get<IdealMagneticFieldRecord>().get(magfieldH);
74  iSetup.get<TrackingComponentsRecord>().get("PropagatorWithMaterial", propagatorOppositeH);
75  iSetup.get<TrackingComponentsRecord>().get("PropagatorWithMaterial", propagatorAlongH);
76  iSetup.get<GlobalTrackingGeometryRecord>().get(geometryH);
77  iSetup.get<TrackerDigiGeometryRecord>().get(tmpTkGeometryH);
78  iSetup.get<TrackingComponentsRecord>().get(estimatorName_,estimatorH);
79  iEvent.getByToken(measurementTrackerTag_, measurementTrackerH);
80 
83  iEvent.getByToken(src_, l2TrackCol);
84 
85  // The product:
86  std::unique_ptr<std::vector<TrajectorySeed> > result(new std::vector<TrajectorySeed>());
87 
88  // Get vector of Detector layers once:
89  std::vector<BarrelDetLayer const*> const& tob = measurementTrackerH->geometricSearchTracker()->tobLayers();
90  std::vector<ForwardDetLayer const*> const& tecPositive = tmpTkGeometryH->isThere(GeomDetEnumerators::P2OTEC) ?
91  measurementTrackerH->geometricSearchTracker()->posTidLayers() :
92  measurementTrackerH->geometricSearchTracker()->posTecLayers();
93  std::vector<ForwardDetLayer const*> const& tecNegative = tmpTkGeometryH->isThere(GeomDetEnumerators::P2OTEC) ?
94  measurementTrackerH->geometricSearchTracker()->negTidLayers() :
95  measurementTrackerH->geometricSearchTracker()->negTecLayers();
96  edm::ESHandle<TrackerTopology> tTopo_handle;
97  iSetup.get<TrackerTopologyRcd>().get(tTopo_handle);
98  const TrackerTopology* tTopo = tTopo_handle.product();
99 
100  // Get the suitable propagators:
101  std::unique_ptr<Propagator> propagatorAlong = SetPropagationDirection(*propagatorAlongH,alongMomentum);
102  std::unique_ptr<Propagator> propagatorOpposite = SetPropagationDirection(*propagatorOppositeH,oppositeToMomentum);
103 
104  edm::ESHandle<Propagator> SmartOpposite;
105  edm::ESHandle<Propagator> SHPOpposite;
106  iSetup.get<TrackingComponentsRecord>().get("hltESPSmartPropagatorAnyOpposite", SmartOpposite);
107  iSetup.get<TrackingComponentsRecord>().get("hltESPSteppingHelixPropagatorOpposite", SHPOpposite);
108 
109  // Loop over the L2's and make seeds for all of them:
110  LogTrace(theCategory) << "TSGForOI::produce: Number of L2's: " << l2TrackCol->size();
111  for (unsigned int l2TrackColIndex(0);l2TrackColIndex!=l2TrackCol->size();++l2TrackColIndex){
112  const reco::TrackRef l2(l2TrackCol, l2TrackColIndex);
113  std::unique_ptr<std::vector<TrajectorySeed> > out(new std::vector<TrajectorySeed>());
114  LogTrace("TSGForOI") << "TSGForOI::produce: L2 muon pT, eta, phi --> " << l2->pt() << " , " << l2->eta() << " , " << l2->phi() << endl;
115 
117  dummyPlane->move(fts.position() - dummyPlane->position());
118  TrajectoryStateOnSurface tsosAtIP = TrajectoryStateOnSurface(fts, *dummyPlane);
119  LogTrace("TSGForOI") << "TSGForOI::produce: Created TSOSatIP: " << tsosAtIP << std::endl;
120 
121  // get the TSOS on the innermost layer of the L2.
122  TrajectoryStateOnSurface tsosAtMuonSystem = trajectoryStateTransform::innerStateOnSurface(*l2, *geometryH, magfieldH.product());
123  LogTrace("TSGForOI") << "TSGForOI::produce: Created TSOSatMuonSystem: " << tsosAtMuonSystem <<endl;
124 
125  if (useHitLessSeeds_){ //
126  LogTrace("TSGForOI") << "TSGForOI::produce: Check the error of the L2 parameter and use hit seeds if big errors" << endl;
127  StateOnTrackerBound fromInside(propagatorAlong.get());
128  TrajectoryStateOnSurface outerTkStateInside = fromInside(fts);
129 
130  StateOnTrackerBound fromOutside(&*SmartOpposite);
131  TrajectoryStateOnSurface outerTkStateOutside = fromOutside(tsosAtMuonSystem);
132 
133  // for now only checking if the two positions (using updated and not-updated) agree withing certain extent,
134  // will probably have to design something fancier for the future.
135  auto dist=0.0;
136  if (outerTkStateInside.isValid() && outerTkStateOutside.isValid()){
137  float deta = outerTkStateInside.globalPosition().eta() - outerTkStateOutside.globalPosition().eta();
138  float dphi = outerTkStateInside.globalPosition().phi() - outerTkStateOutside.globalPosition().phi();
139  dist = sqrt(deta*deta+dphi*dphi);
140  }
141  if (dist>tsosDiff_){
142  ++numOfMaxSeeds; // add a hit-based seed
143  }
144  }
145 
146  numSeedsMade=0;
147  analysedL2 = false;
148  foundHitlessSeed = false;
149 
150  // BARREL
151  if (std::abs(l2->eta()) < maxEtaForTOB_) {
152  layerCount = 0;
153  for (auto it=tob.rbegin(); it!=tob.rend(); ++it) { //This goes from outermost to innermost layer
154  LogTrace("TSGForOI") << "TSGForOI::produce: looping in TOB layer " << layerCount << endl;
155  findSeedsOnLayer(tTopo, **it, tsosAtIP, *(propagatorAlong.get()), *(propagatorOpposite.get()), l2,
156  estimatorH, measurementTrackerH, numSeedsMade, numOfMaxSeeds, layerCount, foundHitlessSeed, analysedL2, out);
157  }
158  }
159 
160  // Reset Number of seeds if in overlap region:
161  if (std::abs(l2->eta())>minEtaForTEC_ && std::abs(l2->eta())<maxEtaForTOB_){
162  numSeedsMade=0;
163  }
164 
165  // ENDCAP+
166  if (l2->eta() > minEtaForTEC_) {
167  layerCount = 0;
168  for (auto it=tecPositive.rbegin(); it!=tecPositive.rend(); ++it) {
169  LogTrace("TSGForOI") << "TSGForOI::produce: looping in TEC+ layer " << layerCount << endl;
170  findSeedsOnLayer(tTopo, **it, tsosAtIP, *(propagatorAlong.get()), *(propagatorOpposite.get()), l2,
171  estimatorH, measurementTrackerH, numSeedsMade, numOfMaxSeeds, layerCount, foundHitlessSeed, analysedL2, out);
172  }
173  }
174 
175  // ENDCAP-
176  if (l2->eta() < -minEtaForTEC_) {
177  layerCount = 0;
178  for (auto it=tecNegative.rbegin(); it!=tecNegative.rend(); ++it) {
179  LogTrace("TSGForOI") << "TSGForOI::produce: looping in TEC- layer " << layerCount << endl;
180  findSeedsOnLayer(tTopo, **it, tsosAtIP, *(propagatorAlong.get()), *(propagatorOpposite.get()), l2,
181  estimatorH, measurementTrackerH, numSeedsMade, numOfMaxSeeds, layerCount, foundHitlessSeed, analysedL2, out);
182  }
183  }
184 
185  for (std::vector<TrajectorySeed>::iterator it=out->begin(); it!=out->end(); ++it){
186  result->push_back(*it);
187  }
188  } //L2Collection
189  edm::LogInfo(theCategory) << "TSGForOI::produce: number of seeds made: " << result->size();
190 
191  iEvent.put(std::move(result));
192 }
193 
195  const TrackerTopology* tTopo,
196  const GeometricSearchDet &layer,
197  const TrajectoryStateOnSurface &tsosAtIP,
200  const reco::TrackRef l2,
202  edm::Handle<MeasurementTrackerEvent>& measurementTrackerH,
203  unsigned int& numSeedsMade,
204  unsigned int& numOfMaxSeeds,
205  unsigned int& layerCount,
206  bool& foundHitlessSeed,
207  bool& analysedL2,
208  std::unique_ptr<std::vector<TrajectorySeed> >& out) const{
209 
210  if (numSeedsMade>numOfMaxSeeds) return;
211  LogTrace("TSGForOI") << "TSGForOI::findSeedsOnLayer: numSeedsMade = " << numSeedsMade << " , layerCount = " << layerCount << endl;
212 
213  double errorSFHits=1.0;
214  double errorSFHitless=1.0;
217 
218  // Hitless:
219  if (useHitLessSeeds_ && !foundHitlessSeed) {
220  LogTrace("TSGForOI") << "TSGForOI::findSeedsOnLayer: Start hitless" << endl;
221  std::vector< GeometricSearchDet::DetWithState > dets;
222  layer.compatibleDetsV(tsosAtIP, propagatorAlong, *estimatorH, dets);
223  if (!dets.empty()) {
224  auto const& detOnLayer = dets.front().first;
225  auto const& tsosOnLayer = dets.front().second;
226  LogTrace("TSGForOI") << "TSGForOI::findSeedsOnLayer: tsosOnLayer " << tsosOnLayer << endl;
227  if (!tsosOnLayer.isValid()){
228  edm::LogInfo(theCategory) << "ERROR!: Hitless TSOS is not valid!";
229  }
230  else{
231  // calculate SF from L2 (only once -- if needed)
232  if (!analysedL2 && adjustErrorsDynamicallyForHitless_) {
233  errorSFHitless=calculateSFFromL2(l2);
234  analysedL2=true;
235  }
236 
237  dets.front().second.rescaleError(errorSFHitless);
238  PTrajectoryStateOnDet const& ptsod = trajectoryStateTransform::persistentState(tsosOnLayer,detOnLayer->geographicalId().rawId());
240  out->push_back(TrajectorySeed(ptsod,rHC,oppositeToMomentum));
241  LogTrace("TSGForOI") << "TSGForOI::findSeedsOnLayer: TSOD (Hitless) done " << endl;
242  foundHitlessSeed=true;
243  }
244  numSeedsMade=out->size();
245  }
246  }
247  // numSeedsMade=out->size();
248 
249  // Hits:
250  if (layerCount>numOfLayersToTry_) return;
251  LogTrace("TSGForOI") << "TSGForOI::findSeedsOnLayer: Start Hits" <<endl;
252  if (makeSeedsFromHits(tTopo, layer, tsosAtIP, *out, propagatorAlong, *measurementTrackerH, estimatorH, errorSFHits)) ++layerCount;
253  numSeedsMade=out->size();
254 }
255 
257 
258  double theSF=1.0;
259  // L2 direction vs pT blowup - as was previously done:
260  // Split into 4 pT ranges: <pT1_, pT1_<pT2_, pT2_<pT3_, <pT4_: 13,30,70
261  // Split into 2 eta ranges for the middle two pT ranges: 1.0,1.4
262  double abseta = std::abs(track->eta());
263  if (track->pt()<=pT1_) theSF=SF1_;
264  if (track->pt()>pT1_ && track->pt()<=pT2_){
265  if (abseta<=eta1_) theSF=SF3_;
266  if (abseta>eta1_ && abseta<=eta2_) theSF=SF2_;
267  if (abseta>eta2_) theSF=SF3_;
268  }
269  if (track->pt()>pT2_ && track->pt()<=pT3_){
270  if (abseta<=eta1_) theSF=SF5_;
271  if (abseta>eta1_ && abseta<=eta2_) theSF=SF4_;
272  if (abseta>eta2_) theSF=SF5_;
273  }
274  if (track->pt()>pT3_) theSF=SF5_;
275 
276  LogTrace(theCategory) << "TSGForOI::calculateSFFromL2: SF has been calculated as: " << theSF;
277  return theSF;
278 }
279 
280 
282  const TrackerTopology* tTopo,
283  const GeometricSearchDet &layer,
284  const TrajectoryStateOnSurface &tsosAtIP,
285  std::vector<TrajectorySeed> &out,
289  const double errorSF) const{
290 
291  // Error Rescaling:
292  TrajectoryStateOnSurface onLayer(tsosAtIP);
293  onLayer.rescaleError(errorSF);
294 
295  std::vector< GeometricSearchDet::DetWithState > dets;
296  layer.compatibleDetsV(onLayer, propagatorAlong, *estimatorH, dets);
297 
298  // Find Measurements on each DetWithState:
299  LogTrace("TSGForOI") << "TSGForOI::findSeedsOnLayer: find measurements on each detWithState " << dets.size() << endl;
300  std::vector<TrajectoryMeasurement> meas;
301  for (std::vector<GeometricSearchDet::DetWithState>::iterator it=dets.begin(); it!=dets.end(); ++it) {
302  MeasurementDetWithData det = measurementTracker.idToDet(it->first->geographicalId());
303  if (det.isNull()) {
304  continue;
305  }
306  if (!it->second.isValid()) continue; //Skip if TSOS is not valid
307 
308  std::vector < TrajectoryMeasurement > mymeas = det.fastMeasurements(it->second, onLayer, propagatorAlong, *estimatorH); //Second TSOS is not used
309  for (std::vector<TrajectoryMeasurement>::const_iterator it2 = mymeas.begin(), ed2 = mymeas.end(); it2 != ed2; ++it2) {
310  if (it2->recHit()->isValid()) meas.push_back(*it2); //Only save those which are valid
311  }
312  }
313 
314 
315  // Update TSOS using TMs after sorting, then create Trajectory Seed and put into vector:
316  LogTrace("TSGForOI") << "TSGForOI::findSeedsOnLayer: Update TSOS using TMs after sorting, then create Trajectory Seed, number of TM = " << meas.size() << endl;
317  unsigned int found = 0;
318  std::sort(meas.begin(), meas.end(), TrajMeasLessEstim());
319  for (std::vector<TrajectoryMeasurement>::const_iterator it=meas.begin(); it!=meas.end(); ++it) {
320  TrajectoryStateOnSurface updatedTSOS = updator_->update(it->forwardPredictedState(), *it->recHit());
321  LogTrace("TSGForOI") << "TSGForOI::findSeedsOnLayer: TSOS for TM " << found << endl;
322  if (not updatedTSOS.isValid()) continue;
323 
324  // CHECK if is StereoLayer:
325  if (useStereoLayersInTEC_) {
326  DetId detid = ((*it).recHit()->hit())->geographicalId();
327  if (detid.subdetId() == StripSubdetector::TEC) {
328  if (!tTopo->tecIsStereo(detid.rawId())) break; // try another layer
329  }
330  }
331 
333  seedHits.push_back(*it->recHit()->hit());
334  PTrajectoryStateOnDet const& pstate = trajectoryStateTransform::persistentState(updatedTSOS, it->recHit()->geographicalId().rawId());
335  TrajectorySeed seed(pstate, std::move(seedHits), oppositeToMomentum);
336  LogTrace("TSGForOI") << "TSGForOI::findSeedsOnLayer: number of seedHits: " << seedHits.size() << endl;
337  out.push_back(seed);
338  found++;
339  if (found == numOfHitsToTry_) break;
340  }
341  return found;
342 }
343 
344 
347  desc.add<edm::InputTag>("src",edm::InputTag("hltL2Muons","UpdatedAtVtx"));
348  desc.add<int>("layersToTry",1);
349  desc.add<double>("fixedErrorRescaleFactorForHitless",2.0);
350  desc.add<int>("hitsToTry",1);
351  desc.add<bool>("adjustErrorsDynamicallyForHits",false);
352  desc.add<bool>("adjustErrorsDynamicallyForHitless",false);
353  desc.add<edm::InputTag>("MeasurementTrackerEvent",edm::InputTag("hltSiStripClusters"));
354  desc.add<bool>("UseHitLessSeeds",true);
355  desc.add<bool>("UseStereoLayersInTEC",false);
356  desc.add<std::string>("estimator","hltESPChi2MeasurementEstimator100");
357  desc.add<double>("maxEtaForTOB",1.2);
358  desc.add<double>("minEtaForTEC",0.8);
359  desc.addUntracked<bool>("debug",true);
360  desc.add<double>("fixedErrorRescaleFactorForHits",2.0);
361  desc.add<unsigned int>("maxSeeds",1);
362  desc.add<double>("pT1",13.0);
363  desc.add<double>("pT2",30.0);
364  desc.add<double>("pT3",70.0);
365  desc.add<double>("eta1",1.0);
366  desc.add<double>("eta2",1.4);
367  desc.add<double>("SF1",3.0);
368  desc.add<double>("SF2",4.0);
369  desc.add<double>("SF3",5.0);
370  desc.add<double>("SF4",7.0);
371  desc.add<double>("SF5",10.0);
372  desc.add<double>("tsosDiff",0.03);
373  descriptions.add("TSGForOI",desc);
374 }
375 
const std::string estimatorName_
Estimator used to find dets and TrajectoryMeasurements.
Definition: TSGForOI.h:61
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:122
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
virtual void produce(edm::StreamID sid, edm::Event &iEvent, const edm::EventSetup &iSetup) const override
Definition: TSGForOI.cc:52
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:460
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
const double tsosDiff_
Distance of TSOSs to trigger using hits or not.
Definition: TSGForOI.h:87
size_type size() const
Definition: OwnVector.h:264
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
PTrajectoryStateOnDet persistentState(const TrajectoryStateOnSurface &ts, unsigned int detid)
GlobalPoint globalPosition() const
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: TSGForOI.cc:345
const double SF3_
Definition: TSGForOI.h:84
const double maxEtaForTOB_
Maximum eta value to activate searching in the TOB.
Definition: TSGForOI.h:67
bool isThere(GeomDetEnumerators::SubDetector subdet) const
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
virtual ~TSGForOI()
Definition: TSGForOI.cc:48
bool tecIsStereo(const DetId &id) const
std::unique_ptr< Propagator > SetPropagationDirection(Propagator const &iprop, PropagationDirection dir)
void push_back(D *&d)
Definition: OwnVector.h:290
const double minEtaForTEC_
Minimum eta value to activate searching in the TEC.
Definition: TSGForOI.h:64
int iEvent
Definition: GenABIO.cc:230
const double fixedErrorRescalingForHits_
How much to rescale errors from the L2 (fixed error vs pT, eta)
Definition: TSGForOI.h:53
const std::unique_ptr< TrajectoryStateUpdator > updator_
KFUpdator defined in constructor.
Definition: TSGForOI.h:77
T sqrt(T t)
Definition: SSEVec.h:18
std::vector< TrajectoryMeasurement > fastMeasurements(const TrajectoryStateOnSurface &stateOnThisDet, const TrajectoryStateOnSurface &tsos2, const Propagator &prop, const MeasurementEstimator &est) const
const double eta2_
Definition: TSGForOI.h:83
static PlanePointer build(Args &&...args)
Definition: Plane.h:33
const bool useHitLessSeeds_
Definition: TSGForOI.h:71
const unsigned int numOfLayersToTry_
How many layers to try.
Definition: TSGForOI.h:47
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
const double SF1_
Definition: TSGForOI.h:84
double calculateSFFromL2(const reco::TrackRef track) const
Function used to calculate the dynamic error SF by analysing the L2.
Definition: TSGForOI.cc:256
const bool useStereoLayersInTEC_
Switch ON to use Stereo layers instead of using every layer in TEC.
Definition: TSGForOI.h:74
void findSeedsOnLayer(const TrackerTopology *tTopo, const GeometricSearchDet &layer, const TrajectoryStateOnSurface &tsosAtIP, const Propagator &propagatorAlong, const Propagator &propagatorOpposite, const reco::TrackRef l2, edm::ESHandle< Chi2MeasurementEstimatorBase > &estimator_, edm::Handle< MeasurementTrackerEvent > &measurementTrackerH, unsigned int &numSeedsMade, unsigned int &numOfMaxSeeds, unsigned int &layerCount, bool &foundHitlessSeed, bool &analysedL2, std::unique_ptr< std::vector< TrajectorySeed > > &out) const
Function to find seeds on a given layer.
Definition: TSGForOI.cc:194
const double SF5_
Definition: TSGForOI.h:84
ParameterDescriptionBase * add(U const &iLabel, T const &value)
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
#define LogTrace(id)
Create L3MuonTrajectorySeeds from L2 Muons updated at vertex in an outside in manner.
Definition: TSGForOI.h:33
const bool adjustErrorsDynamicallyForHitless_
Definition: TSGForOI.h:58
const double pT1_
pT, eta ranges and scale factor values
Definition: TSGForOI.h:82
const double SF4_
Definition: TSGForOI.h:84
Definition: DetId.h:18
GlobalPoint position() const
int makeSeedsFromHits(const TrackerTopology *tTopo, const GeometricSearchDet &layer, const TrajectoryStateOnSurface &tsosAtIP, std::vector< TrajectorySeed > &out, const Propagator &propagatorAlong, const MeasurementTrackerEvent &measurementTracker, edm::ESHandle< Chi2MeasurementEstimatorBase > &estimator_, const double errorSF) const
Function to find hits on layers and create seeds from updated TSOS.
Definition: TSGForOI.cc:281
const double pT2_
Definition: TSGForOI.h:82
const double eta1_
Definition: TSGForOI.h:83
const double pT3_
Definition: TSGForOI.h:82
const T & get() const
Definition: EventSetup.h:55
void add(std::string const &label, ParameterSetDescription const &psetDescription)
const edm::EDGetTokenT< reco::TrackCollection > src_
Labels for input collections.
Definition: TSGForOI.h:41
T eta() const
Definition: PV3DBase.h:76
const bool adjustErrorsDynamicallyForHits_
Whether or not to use an automatically calculated scale-factor value.
Definition: TSGForOI.h:57
fixed size matrix
HLT enums.
TSGForOI(const edm::ParameterSet &iConfig)
Definition: TSGForOI.cc:15
const edm::EDGetTokenT< MeasurementTrackerEvent > measurementTrackerTag_
Definition: TSGForOI.h:79
const unsigned int numOfMaxSeedsParam_
Maximum number of seeds for each L2.
Definition: TSGForOI.h:44
const std::string theCategory
Counters and flags for the implementation.
Definition: TSGForOI.h:90
const double SF2_
Definition: TSGForOI.h:84
FreeTrajectoryState initialFreeState(const reco::Track &tk, const MagneticField *field, bool withErr=true)
T const * product() const
Definition: ESHandle.h:86
virtual void compatibleDetsV(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetWithState > &result) const
def move(src, dest)
Definition: eostools.py:510
const unsigned int numOfHitsToTry_
How many hits to try per layer.
Definition: TSGForOI.h:50
TrajectoryStateOnSurface innerStateOnSurface(const reco::Track &tk, const TrackingGeometry &geom, const MagneticField *field, bool withErr=true)
const double fixedErrorRescalingForHitless_
Definition: TSGForOI.h:54