CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Public Attributes | Private Member Functions | Private Attributes
MuonSeedCleaner Class Reference

#include <MuonSeedCleaner.h>

Public Types

typedef std::deque< bool > BoolContainer
 
typedef MuonTransientTrackingRecHit::MuonRecHitContainer SegmentContainer
 

Public Member Functions

 MuonSeedCleaner (const edm::ParameterSet &)
 Constructor. More...
 
int NRecHitsFromSegment (const TrackingRecHit &rhit)
 
int NRecHitsFromSegment (MuonTransientTrackingRecHit *rhit)
 
std::vector< TrajectorySeedseedCleaner (const edm::EventSetup &eventSetup, std::vector< TrajectorySeed > &seeds)
 Cache pointer to geometry. More...
 
 ~MuonSeedCleaner ()
 Destructor. More...
 

Public Attributes

std::vector< int > badSeedLayer
 

Private Member Functions

TrajectorySeed BiggerCone (std::vector< TrajectorySeed > &seeds)
 select the seed with bigger projection cone to next layer More...
 
TrajectorySeed Chi2LengthSelection (std::vector< TrajectorySeed > &seeds)
 select seed by balance length and chi2 More...
 
std::vector< SeedContainerGroupSeeds (std::vector< TrajectorySeed > &seeds)
 group the seeds More...
 
TrajectorySeed LeanHighMomentum (std::vector< TrajectorySeed > &seeds)
 select the highest momentum pt seed More...
 
SeedContainer LengthFilter (std::vector< TrajectorySeed > &seeds)
 
bool MomentumFilter (std::vector< TrajectorySeed > &seeds)
 filter out the bad pt seeds, if all are bad pt seeds then keep all More...
 
TrajectorySeed MoreRecHits (std::vector< TrajectorySeed > &seeds)
 select the seed with more rechits More...
 
double NChi2OfSegment (const TrackingRecHit &rhit)
 retrieve number of rechits& normalized chi2 of associated segments of a seed More...
 
unsigned int OverlapSegments (const TrajectorySeed &seed1, const TrajectorySeed &seed2)
 check overlapping segment for seeds More...
 
SeedContainer SeedCandidates (std::vector< TrajectorySeed > &seeds, bool good)
 pick the seeds w/ 1st layer information and w/ more than 1 segments More...
 
double SeedChi2 (const TrajectorySeed &seed)
 
int SeedLength (const TrajectorySeed &seed)
 
GlobalVector SeedMomentum (const TrajectorySeed &seed)
 retrieve seed global momentum More...
 
GlobalPoint SeedPosition (const TrajectorySeed &seed)
 retrieve seed global position More...
 

Private Attributes

bool debug
 
std::vector< int > ShoweringLayers
 
SegmentContainer ShoweringSegments
 
MuonServiceProxytheService
 

Detailed Description

Algorith to clean duplicate seeds and select a right one

author: Shih-Chuan Kao - UCR

Definition at line 27 of file MuonSeedCleaner.h.

Member Typedef Documentation

typedef std::deque<bool> MuonSeedCleaner::BoolContainer

Definition at line 30 of file MuonSeedCleaner.h.

Definition at line 29 of file MuonSeedCleaner.h.

Constructor & Destructor Documentation

MuonSeedCleaner::MuonSeedCleaner ( const edm::ParameterSet pset)
explicit

Constructor.

Definition at line 49 of file MuonSeedCleaner.cc.

References debug, edm::ParameterSet::getParameter(), MuonServiceProxy_cff::MuonServiceProxy, and theService.

49  {
50  // Local Debug flag
51  debug = pset.getParameter<bool>("DebugMuonSeed");
52 
53  // muon service
54  edm::ParameterSet serviceParameters = pset.getParameter<edm::ParameterSet>("ServiceParameters");
55  theService = new MuonServiceProxy(serviceParameters);
56 }
T getParameter(std::string const &) const
MuonServiceProxy * theService
MuonSeedCleaner::~MuonSeedCleaner ( )

Destructor.

Definition at line 61 of file MuonSeedCleaner.cc.

References theService.

61  {
62  if (theService)
63  delete theService;
64 }
MuonServiceProxy * theService

Member Function Documentation

TrajectorySeed MuonSeedCleaner::BiggerCone ( std::vector< TrajectorySeed > &  seeds)
private

select the seed with bigger projection cone to next layer

Definition at line 162 of file MuonSeedCleaner.cc.

References mps_fire::i, NRecHitsFromSegment(), diffTwoXMLs::r1, and mathSSE::sqrt().

Referenced by seedCleaner().

162  {
163  if (seeds.size() == 1)
164  return seeds[0];
165 
166  float biggerProjErr = 9999.;
167  int winner = 0;
168  AlgebraicSymMatrix mat(5, 0);
169  for (size_t i = 0; i < seeds.size(); i++) {
170  edm::OwnVector<TrackingRecHit>::const_iterator r1 = seeds[i].recHits().first;
171  mat = r1->parametersError().similarityT(r1->projectionMatrix());
172 
173  int NRecHits = NRecHitsFromSegment(*r1);
174 
175  float ddx = mat[1][1];
176  float ddy = mat[2][2];
177  float dxx = mat[3][3];
178  float dyy = mat[4][4];
179  float projectErr = sqrt((ddx * 10000.) + (ddy * 10000.) + dxx + dyy);
180 
181  if (NRecHits < 5)
182  continue;
183  if (projectErr < biggerProjErr)
184  continue;
185 
186  winner = static_cast<int>(i);
187  biggerProjErr = projectErr;
188  }
189  TrajectorySeed theSeed = seeds[winner];
190  seeds.erase(seeds.begin() + winner);
191  return theSeed;
192 }
T sqrt(T t)
Definition: SSEVec.h:19
int NRecHitsFromSegment(const TrackingRecHit &rhit)
CLHEP::HepSymMatrix AlgebraicSymMatrix
TrajectorySeed MuonSeedCleaner::Chi2LengthSelection ( std::vector< TrajectorySeed > &  seeds)
private

select seed by balance length and chi2

Definition at line 124 of file MuonSeedCleaner.cc.

References mps_fire::i, SeedChi2(), and bscTrigger_cfi::theHits.

Referenced by seedCleaner().

124  {
125  if (seeds.size() == 1)
126  return seeds[0];
127 
128  int winner = 0;
129  int moreHits = 0;
130  double bestChi2 = 99999.;
131  for (size_t i = 0; i < seeds.size(); i++) {
132  // 1. fill out the Nchi2 of segments of the seed
133  //GlobalVector mom = SeedMomentum( seeds[i] ); // temporary use for debugging
134  //double pt = sqrt( (mom.x()*mom.x()) + (mom.y()*mom.y()) );
135  //std::cout<<" > SEED"<<i<<" pt:"<<pt<< std::endl;
136 
137  double theChi2 = SeedChi2(seeds[i]);
138  double dChi2 = fabs(1. - (theChi2 / bestChi2));
139  int theHits = seeds[i].nHits();
140  int dHits = theHits - moreHits;
141  //std::cout<<" ----- "<<std::endl;
142 
143  // 2. better chi2
144  if (theChi2 < bestChi2 && dChi2 > 0.05) {
145  winner = static_cast<int>(i);
146  bestChi2 = theChi2;
147  moreHits = theHits;
148  }
149  // 3. if chi2 is not much better, pick more rechits one
150  if (theChi2 >= bestChi2 && dChi2 < 0.05 && dHits > 0) {
151  winner = static_cast<int>(i);
152  bestChi2 = theChi2;
153  moreHits = theHits;
154  }
155  }
156  //std::cout<<" Winner is "<< winner <<std::endl;
157  TrajectorySeed theSeed = seeds[winner];
158  seeds.erase(seeds.begin() + winner);
159  return theSeed;
160 }
double SeedChi2(const TrajectorySeed &seed)
std::vector< SeedContainer > MuonSeedCleaner::GroupSeeds ( std::vector< TrajectorySeed > &  seeds)
private

group the seeds

Definition at line 328 of file MuonSeedCleaner.cc.

References cuy::dh, HGC3DClusterGenMatchSelector_cfi::dR, PV3DBase< T, PVType, FrameType >::eta(), mps_fire::i, dqmiolumiharvest::j, lengthSorting(), OverlapSegments(), PV3DBase< T, PVType, FrameType >::phi(), ElectronSeedTrackRefFix_cfi::seedCollection, SeedPosition(), and mathSSE::sqrt().

Referenced by seedCleaner().

328  {
329  std::vector<SeedContainer> seedCollection;
330  seedCollection.clear();
331  std::vector<TrajectorySeed> theGroup;
332  std::vector<bool> usedSeed(seeds.size(), false);
333 
334  // categorize seeds by comparing overlapping segments or a certian eta-phi cone
335  for (size_t i = 0; i < seeds.size(); i++) {
336  if (usedSeed[i])
337  continue;
338  theGroup.push_back(seeds[i]);
339  usedSeed[i] = true;
340 
341  GlobalPoint pos1 = SeedPosition(seeds[i]);
342 
343  for (size_t j = i + 1; j < seeds.size(); j++) {
344  // 1.1 seeds with overlaaping segments will be grouped together
345  unsigned int overlapping = OverlapSegments(seeds[i], seeds[j]);
346  if (!usedSeed[j] && overlapping > 0) {
347  // reject the identical seeds
348  if (seeds[i].nHits() == overlapping && seeds[j].nHits() == overlapping) {
349  usedSeed[j] = true;
350  continue;
351  }
352  theGroup.push_back(seeds[j]);
353  usedSeed[j] = true;
354  }
355  if (usedSeed[j])
356  continue;
357 
358  // 1.2 seeds in a certain cone are grouped together
359  GlobalPoint pos2 = SeedPosition(seeds[j]);
360  double dh = pos1.eta() - pos2.eta();
361  double df = pos1.phi() - pos2.phi();
362  double dR = sqrt((dh * dh) + (df * df));
363 
364  if (dR > 0.3 && seeds[j].nHits() == 1)
365  continue;
366  if (dR > 0.2 && seeds[j].nHits() > 1)
367  continue;
368  theGroup.push_back(seeds[j]);
369  usedSeed[j] = true;
370  }
371  sort(theGroup.begin(), theGroup.end(), lengthSorting);
372  seedCollection.push_back(theGroup);
373  //std::cout<<" group "<<seedCollection.size() <<" w/"<< theGroup.size() <<" seeds"<<std::endl;
374  theGroup.clear();
375  }
376  return seedCollection;
377 }
static bool lengthSorting(const TrajectorySeed &s1, const TrajectorySeed &s2)
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
GlobalPoint SeedPosition(const TrajectorySeed &seed)
retrieve seed global position
unsigned int OverlapSegments(const TrajectorySeed &seed1, const TrajectorySeed &seed2)
check overlapping segment for seeds
T sqrt(T t)
Definition: SSEVec.h:19
T eta() const
Definition: PV3DBase.h:73
dh
Definition: cuy.py:355
TrajectorySeed MuonSeedCleaner::LeanHighMomentum ( std::vector< TrajectorySeed > &  seeds)
private

select the highest momentum pt seed

Definition at line 194 of file MuonSeedCleaner.cc.

References mps_fire::i, DiDispStaMuonMonitor_cfi::pt, SeedMomentum(), mathSSE::sqrt(), PV3DBase< T, PVType, FrameType >::x(), and PV3DBase< T, PVType, FrameType >::y().

Referenced by seedCleaner().

194  {
195  if (seeds.size() == 1)
196  return seeds[0];
197 
198  double highestPt = 0.;
199  int winner = 0;
200  for (size_t i = 0; i < seeds.size(); i++) {
201  GlobalVector mom = SeedMomentum(seeds[i]);
202  double pt = sqrt((mom.x() * mom.x()) + (mom.y() * mom.y()));
203  if (pt > highestPt) {
204  winner = static_cast<int>(i);
205  highestPt = pt;
206  }
207  }
208  TrajectorySeed theSeed = seeds[winner];
209  seeds.erase(seeds.begin() + winner);
210  return theSeed;
211 }
T y() const
Definition: PV3DBase.h:60
T sqrt(T t)
Definition: SSEVec.h:19
GlobalVector SeedMomentum(const TrajectorySeed &seed)
retrieve seed global momentum
T x() const
Definition: PV3DBase.h:59
SeedContainer MuonSeedCleaner::LengthFilter ( std::vector< TrajectorySeed > &  seeds)
private

pick the seed by better parameter error collect long seeds

Definition at line 244 of file MuonSeedCleaner.cc.

References mps_fire::i.

244  {
245  SeedContainer longSeeds;
246  int NSegs = 0;
247  for (size_t i = 0; i < seeds.size(); i++) {
248  int theLength = static_cast<int>(seeds[i].nHits());
249  if (theLength > NSegs) {
250  NSegs = theLength;
251  longSeeds.clear();
252  longSeeds.push_back(seeds[i]);
253  } else if (theLength == NSegs) {
254  longSeeds.push_back(seeds[i]);
255  } else {
256  continue;
257  }
258  }
259  //std::cout<<" final Length :"<<NSegs<<std::endl;
260 
261  return longSeeds;
262 }
std::vector< TrajectorySeed > SeedContainer
bool MuonSeedCleaner::MomentumFilter ( std::vector< TrajectorySeed > &  seeds)
private

filter out the bad pt seeds, if all are bad pt seeds then keep all

Definition at line 264 of file MuonSeedCleaner.cc.

References mps_fire::i, DiDispStaMuonMonitor_cfi::pt, SeedMomentum(), mathSSE::sqrt(), PV3DBase< T, PVType, FrameType >::x(), and PV3DBase< T, PVType, FrameType >::y().

Referenced by seedCleaner().

264  {
265  bool findgoodMomentum = false;
266  SeedContainer goodMomentumSeeds = seeds;
267  seeds.clear();
268  for (size_t i = 0; i < goodMomentumSeeds.size(); i++) {
269  GlobalVector mom = SeedMomentum(goodMomentumSeeds[i]);
270  double pt = sqrt((mom.x() * mom.x()) + (mom.y() * mom.y()));
271  if (pt < 6. || pt > 2000.)
272  continue;
273  //if ( pt < 6. ) continue;
274  //std::cout<<" passed momentum :"<< pt <<std::endl;
275  seeds.push_back(goodMomentumSeeds[i]);
276  findgoodMomentum = true;
277  }
278  if (seeds.empty())
279  seeds = goodMomentumSeeds;
280 
281  return findgoodMomentum;
282 }
T y() const
Definition: PV3DBase.h:60
T sqrt(T t)
Definition: SSEVec.h:19
GlobalVector SeedMomentum(const TrajectorySeed &seed)
retrieve seed global momentum
std::vector< TrajectorySeed > SeedContainer
T x() const
Definition: PV3DBase.h:59
TrajectorySeed MuonSeedCleaner::MoreRecHits ( std::vector< TrajectorySeed > &  seeds)
private

select the seed with more rechits

Definition at line 213 of file MuonSeedCleaner.cc.

References mps_fire::i, NRecHitsFromSegment(), diffTwoXMLs::r1, FastTrackerRecHitMaskProducer_cfi::recHits, SeedChi2(), and bscTrigger_cfi::theHits.

Referenced by seedCleaner().

213  {
214  if (seeds.size() == 1)
215  return seeds[0];
216 
217  int winner = 0;
218  int moreHits = 0;
219  double betterChi2 = 99999.;
220  for (size_t i = 0; i < seeds.size(); i++) {
221  int theHits = 0;
222  for (edm::OwnVector<TrackingRecHit>::const_iterator r1 = seeds[i].recHits().first; r1 != seeds[i].recHits().second;
223  r1++) {
224  theHits += NRecHitsFromSegment(*r1);
225  }
226 
227  double theChi2 = SeedChi2(seeds[i]);
228 
229  if (theHits == moreHits && theChi2 < betterChi2) {
230  betterChi2 = theChi2;
231  winner = static_cast<int>(i);
232  }
233  if (theHits > moreHits) {
234  moreHits = theHits;
235  betterChi2 = theChi2;
236  winner = static_cast<int>(i);
237  }
238  }
239  TrajectorySeed theSeed = seeds[winner];
240  seeds.erase(seeds.begin() + winner);
241  return theSeed;
242 }
double SeedChi2(const TrajectorySeed &seed)
int NRecHitsFromSegment(const TrackingRecHit &rhit)
double MuonSeedCleaner::NChi2OfSegment ( const TrackingRecHit rhit)
private

retrieve number of rechits& normalized chi2 of associated segments of a seed

Definition at line 495 of file MuonSeedCleaner.cc.

References TrackingRecHit::clone(), TrackingRecHit::geographicalId(), GlobalTrackingGeometry::idToDet(), MuonTransientTrackingRecHit::specificBuild(), theService, and MuonServiceProxy::trackingGeometry().

Referenced by SeedChi2().

495  {
496  double NChi2 = 999999.;
497  const GeomDet* gdet = theService->trackingGeometry()->idToDet(rhit.geographicalId());
500 
501  double dof = static_cast<double>(theSeg->degreesOfFreedom());
502  NChi2 = theSeg->chi2() / dof;
503  //std::cout<<" Chi2 = "<< NChi2 <<" |" ;
504 
505  return NChi2;
506 }
MuonServiceProxy * theService
std::shared_ptr< MuonTransientTrackingRecHit > MuonRecHitPointer
virtual TrackingRecHit * clone() const =0
edm::ESHandle< GlobalTrackingGeometry > trackingGeometry() const
get the tracking geometry
const GeomDet * idToDet(DetId) const override
DetId geographicalId() const
static MuonRecHitPointer specificBuild(const GeomDet *geom, const TrackingRecHit *rh)
int MuonSeedCleaner::NRecHitsFromSegment ( const TrackingRecHit rhit)

Definition at line 452 of file MuonSeedCleaner.cc.

References TrackingRecHit::clone(), MuonSubdetId::CSC, MuonSubdetId::DT, GeomDet::geographicalId(), TrackingRecHit::geographicalId(), GlobalTrackingGeometry::idToDet(), dqmiolumiharvest::j, findQualityFiles::size, MuonTransientTrackingRecHit::specificBuild(), theService, and MuonServiceProxy::trackingGeometry().

Referenced by BiggerCone(), MuonSeedBuilder::foundMatchingSegment(), MuonSeedBuilder::IdentifyShowering(), MoreRecHits(), and SeedLength().

452  {
453  int NRechits = 0;
454  const GeomDet* gdet = theService->trackingGeometry()->idToDet(rhit.geographicalId());
457 
458  DetId geoId = gdet->geographicalId();
459  if (geoId.subdetId() == MuonSubdetId::DT) {
460  DTChamberId DT_Id(rhit.geographicalId());
461  std::vector<TrackingRecHit*> DThits = theSeg->recHits();
462  int dt1DHits = 0;
463  for (size_t j = 0; j < DThits.size(); j++) {
464  dt1DHits += (DThits[j]->recHits()).size();
465  }
466  NRechits = dt1DHits;
467  }
468 
469  if (geoId.subdetId() == MuonSubdetId::CSC) {
470  NRechits = (theSeg->recHits()).size();
471  }
472  return NRechits;
473 }
size
Write out results.
MuonServiceProxy * theService
std::shared_ptr< MuonTransientTrackingRecHit > MuonRecHitPointer
virtual TrackingRecHit * clone() const =0
DetId geographicalId() const
The label of this GeomDet.
Definition: GeomDet.h:64
Definition: DetId.h:17
edm::ESHandle< GlobalTrackingGeometry > trackingGeometry() const
get the tracking geometry
const GeomDet * idToDet(DetId) const override
DetId geographicalId() const
static constexpr int DT
Definition: MuonSubdetId.h:11
static constexpr int CSC
Definition: MuonSubdetId.h:12
static MuonRecHitPointer specificBuild(const GeomDet *geom, const TrackingRecHit *rh)
int MuonSeedCleaner::NRecHitsFromSegment ( MuonTransientTrackingRecHit rhit)

Definition at line 475 of file MuonSeedCleaner.cc.

References MuonSubdetId::CSC, MuonSubdetId::DT, TrackingRecHit::geographicalId(), dqmiolumiharvest::j, GenericTransientTrackingRecHit::recHits(), findQualityFiles::size, and DetId::subdetId().

475  {
476  int NRechits = 0;
477  DetId geoId = rhit->geographicalId();
478  if (geoId.subdetId() == MuonSubdetId::DT) {
479  DTChamberId DT_Id(geoId);
480  std::vector<TrackingRecHit*> DThits = rhit->recHits();
481  int dt1DHits = 0;
482  for (size_t j = 0; j < DThits.size(); j++) {
483  dt1DHits += (DThits[j]->recHits()).size();
484  }
485  NRechits = dt1DHits;
486  //std::cout<<" D_rh("<< dt1DHits <<") " ;
487  }
488  if (geoId.subdetId() == MuonSubdetId::CSC) {
489  NRechits = (rhit->recHits()).size();
490  //std::cout<<" C_rh("<<(rhit->recHits()).size() <<") " ;
491  }
492  return NRechits;
493 }
size
Write out results.
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
std::vector< const TrackingRecHit * > recHits() const override
Access to component RecHits (if any)
Definition: DetId.h:17
DetId geographicalId() const
static constexpr int DT
Definition: MuonSubdetId.h:11
static constexpr int CSC
Definition: MuonSubdetId.h:12
unsigned int MuonSeedCleaner::OverlapSegments ( const TrajectorySeed seed1,
const TrajectorySeed seed2 
)
private

check overlapping segment for seeds

Definition at line 379 of file MuonSeedCleaner.cc.

References PVValHelper::dx, PVValHelper::dy, PVValHelper::dz, globals_cff::id1, globals_cff::id2, GlobalTrackingGeometry::idToDet(), diffTwoXMLs::r1, diffTwoXMLs::r2, TrajectorySeed::recHits(), mathSSE::sqrt(), theService, GeomDet::toGlobal(), MuonServiceProxy::trackingGeometry(), PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

Referenced by GroupSeeds().

379  {
380  unsigned int overlapping = 0;
381  for (edm::OwnVector<TrackingRecHit>::const_iterator r1 = seed1.recHits().first; r1 != seed1.recHits().second; r1++) {
382  DetId id1 = (*r1).geographicalId();
383  const GeomDet* gdet1 = theService->trackingGeometry()->idToDet(id1);
384  GlobalPoint gp1 = gdet1->toGlobal((*r1).localPosition());
385 
386  for (edm::OwnVector<TrackingRecHit>::const_iterator r2 = seed2.recHits().first; r2 != seed2.recHits().second;
387  r2++) {
388  DetId id2 = (*r2).geographicalId();
389  if (id1 != id2)
390  continue;
391 
392  const GeomDet* gdet2 = theService->trackingGeometry()->idToDet(id2);
393  GlobalPoint gp2 = gdet2->toGlobal((*r2).localPosition());
394 
395  double dx = gp1.x() - gp2.x();
396  double dy = gp1.y() - gp2.y();
397  double dz = gp1.z() - gp2.z();
398  double dL = sqrt(dx * dx + dy * dy + dz * dz);
399 
400  if (dL < 1.)
401  overlapping++;
402  }
403  }
404  return overlapping;
405 }
GlobalPoint toGlobal(const Local2DPoint &lp) const
Conversion to the global R.F. from the R.F. of the GeomDet.
Definition: GeomDet.h:49
T y() const
Definition: PV3DBase.h:60
MuonServiceProxy * theService
T sqrt(T t)
Definition: SSEVec.h:19
T z() const
Definition: PV3DBase.h:61
Definition: DetId.h:17
range recHits() const
edm::ESHandle< GlobalTrackingGeometry > trackingGeometry() const
get the tracking geometry
const GeomDet * idToDet(DetId) const override
T x() const
Definition: PV3DBase.h:59
SeedContainer MuonSeedCleaner::SeedCandidates ( std::vector< TrajectorySeed > &  seeds,
bool  good 
)
private

pick the seeds w/ 1st layer information and w/ more than 1 segments

Definition at line 284 of file MuonSeedCleaner.cc.

References MuonSubdetId::CSC, MuonSubdetId::DT, GeomDet::geographicalId(), mps_fire::i, GlobalTrackingGeometry::idToDet(), training_settings::idx, diffTwoXMLs::r1, FastTrackerRecHitMaskProducer_cfi::recHits, CSCDetId::station(), DetId::subdetId(), theService, and MuonServiceProxy::trackingGeometry().

Referenced by seedCleaner().

284  {
285  SeedContainer theCandidate;
286  theCandidate.clear();
287 
288  bool longSeed = false;
289  bool withFirstLayer = false;
290 
291  //std::cout<<"***** Seed Classification *****"<< seeds.size() <<std::endl;
292  for (size_t i = 0; i < seeds.size(); i++) {
293  if (seeds[i].nHits() > 1)
294  longSeed = true;
295  //std::cout<<" Seed: "<<i<<" w/"<<seeds[i].nHits()<<" segs "<<std::endl;
296  // looking for 1st layer segment
297  int idx = 0;
298  for (edm::OwnVector<TrackingRecHit>::const_iterator r1 = seeds[i].recHits().first; r1 != seeds[i].recHits().second;
299  r1++) {
300  idx++;
301  const GeomDet* gdet = theService->trackingGeometry()->idToDet((*r1).geographicalId());
302  DetId geoId = gdet->geographicalId();
303 
304  if (geoId.subdetId() == MuonSubdetId::DT) {
305  DTChamberId DT_Id((*r1).geographicalId());
306  //std::cout<<" ID:"<<DT_Id <<" pos:"<< r1->localPosition() <<std::endl;
307  if (DT_Id.station() != 1)
308  continue;
309  withFirstLayer = true;
310  }
311  if (geoId.subdetId() == MuonSubdetId::CSC) {
312  idx++;
313  CSCDetId CSC_Id = CSCDetId((*r1).geographicalId());
314  //std::cout<<" ID:"<<CSC_Id <<" pos:"<< r1->localPosition() <<std::endl;
315  if (CSC_Id.station() != 1)
316  continue;
317  withFirstLayer = true;
318  }
319  }
320  bool goodseed = (longSeed && withFirstLayer) ? true : false;
321 
322  if (goodseed == good)
323  theCandidate.push_back(seeds[i]);
324  }
325  return theCandidate;
326 }
MuonServiceProxy * theService
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
DetId geographicalId() const
The label of this GeomDet.
Definition: GeomDet.h:64
Definition: DetId.h:17
edm::ESHandle< GlobalTrackingGeometry > trackingGeometry() const
get the tracking geometry
const GeomDet * idToDet(DetId) const override
int station() const
Definition: CSCDetId.h:79
static constexpr int DT
Definition: MuonSubdetId.h:11
std::vector< TrajectorySeed > SeedContainer
static constexpr int CSC
Definition: MuonSubdetId.h:12
double MuonSeedCleaner::SeedChi2 ( const TrajectorySeed seed)
private

Definition at line 407 of file MuonSeedCleaner.cc.

References NChi2OfSegment(), TrajectorySeed::nHits(), diffTwoXMLs::r1, and TrajectorySeed::recHits().

Referenced by Chi2LengthSelection(), and MoreRecHits().

407  {
408  double theChi2 = 0.;
409  for (edm::OwnVector<TrackingRecHit>::const_iterator r1 = seed.recHits().first; r1 != seed.recHits().second; r1++) {
410  //std::cout<<" segmet : "<<it <<std::endl;
411  theChi2 += NChi2OfSegment(*r1);
412  }
413  theChi2 = theChi2 / seed.nHits();
414 
415  //std::cout<<" final Length :"<<NSegs<<std::endl;
416  return theChi2;
417 }
double NChi2OfSegment(const TrackingRecHit &rhit)
retrieve number of rechits& normalized chi2 of associated segments of a seed
range recHits() const
unsigned int nHits() const
std::vector< TrajectorySeed > MuonSeedCleaner::seedCleaner ( const edm::EventSetup eventSetup,
std::vector< TrajectorySeed > &  seeds 
)

Cache pointer to geometry.

Cache pointer to Magnetic field cleaning the seeds

Definition at line 72 of file MuonSeedCleaner.cc.

References BiggerCone(), Chi2LengthSelection(), PVValHelper::eta, PV3DBase< T, PVType, FrameType >::eta(), GroupSeeds(), mps_fire::i, LeanHighMomentum(), MomentumFilter(), MoreRecHits(), SeedCandidates(), SeedPosition(), theService, and MuonServiceProxy::update().

Referenced by MuonSeedBuilder::build().

73  {
74  theService->update(eventSetup);
75 
76  std::vector<TrajectorySeed> FinalSeeds;
77 
78  // group the seeds
79  std::vector<SeedContainer> theCollection = GroupSeeds(seeds);
80 
81  // ckeck each group and pick the good one
82  for (size_t i = 0; i < theCollection.size(); i++) {
83  // separate seeds w/ more than 1 segments and w/ 1st layer segment information
84  SeedContainer goodSeeds = SeedCandidates(theCollection[i], true);
85  SeedContainer otherSeeds = SeedCandidates(theCollection[i], false);
86  if (MomentumFilter(goodSeeds)) {
87  //std::cout<<" == type1 "<<std::endl;
88  TrajectorySeed bestSeed = Chi2LengthSelection(goodSeeds);
89  FinalSeeds.push_back(bestSeed);
90 
91  GlobalPoint seedgp = SeedPosition(bestSeed);
92  double eta = fabs(seedgp.eta());
93  if (goodSeeds.size() > 2 && eta > 1.5) {
94  TrajectorySeed anotherSeed = MoreRecHits(goodSeeds);
95  FinalSeeds.push_back(anotherSeed);
96  }
97  } else if (MomentumFilter(otherSeeds)) {
98  //std::cout<<" == type2 "<<std::endl;
99  TrajectorySeed bestSeed = MoreRecHits(otherSeeds);
100  FinalSeeds.push_back(bestSeed);
101 
102  GlobalPoint seedgp = SeedPosition(bestSeed);
103  double eta = fabs(seedgp.eta());
104  if (otherSeeds.size() > 2 && eta > 1.5) {
105  TrajectorySeed anotherSeed = LeanHighMomentum(otherSeeds);
106  FinalSeeds.push_back(anotherSeed);
107  }
108  } else {
109  //std::cout<<" == type3 "<<std::endl;
110  TrajectorySeed bestSeed = LeanHighMomentum(theCollection[i]);
111  FinalSeeds.push_back(bestSeed);
112 
113  GlobalPoint seedgp = SeedPosition(bestSeed);
114  double eta = fabs(seedgp.eta());
115  if (theCollection.size() > 2 && eta > 1.5) {
116  TrajectorySeed anotherSeed = BiggerCone(theCollection[i]);
117  FinalSeeds.push_back(anotherSeed);
118  }
119  }
120  }
121  return FinalSeeds;
122 }
void update(const edm::EventSetup &setup)
update the services each event
TrajectorySeed BiggerCone(std::vector< TrajectorySeed > &seeds)
select the seed with bigger projection cone to next layer
MuonServiceProxy * theService
GlobalPoint SeedPosition(const TrajectorySeed &seed)
retrieve seed global position
bool MomentumFilter(std::vector< TrajectorySeed > &seeds)
filter out the bad pt seeds, if all are bad pt seeds then keep all
TrajectorySeed LeanHighMomentum(std::vector< TrajectorySeed > &seeds)
select the highest momentum pt seed
std::vector< SeedContainer > GroupSeeds(std::vector< TrajectorySeed > &seeds)
group the seeds
SeedContainer SeedCandidates(std::vector< TrajectorySeed > &seeds, bool good)
pick the seeds w/ 1st layer information and w/ more than 1 segments
T eta() const
Definition: PV3DBase.h:73
TrajectorySeed MoreRecHits(std::vector< TrajectorySeed > &seeds)
select the seed with more rechits
std::vector< TrajectorySeed > SeedContainer
TrajectorySeed Chi2LengthSelection(std::vector< TrajectorySeed > &seeds)
select seed by balance length and chi2
int MuonSeedCleaner::SeedLength ( const TrajectorySeed seed)
private

Definition at line 419 of file MuonSeedCleaner.cc.

References NRecHitsFromSegment(), diffTwoXMLs::r1, TrajectorySeed::recHits(), and bscTrigger_cfi::theHits.

419  {
420  int theHits = 0;
421  for (edm::OwnVector<TrackingRecHit>::const_iterator r1 = seed.recHits().first; r1 != seed.recHits().second; r1++) {
422  //std::cout<<" segmet : "<<it <<std::endl;
423  theHits += NRecHitsFromSegment(*r1);
424  }
425 
426  //std::cout<<" final Length :"<<NSegs<<std::endl;
427  return theHits;
428 }
int NRecHitsFromSegment(const TrackingRecHit &rhit)
range recHits() const
GlobalVector MuonSeedCleaner::SeedMomentum ( const TrajectorySeed seed)
private

retrieve seed global momentum

Definition at line 441 of file MuonSeedCleaner.cc.

References PTrajectoryStateOnDet::detId(), TrajectoryStateOnSurface::globalMomentum(), GlobalTrackingGeometry::idToDet(), MuonServiceProxy::magneticField(), TrajectorySeed::startingState(), theService, MuonServiceProxy::trackingGeometry(), and trajectoryStateTransform::transientState().

Referenced by LeanHighMomentum(), and MomentumFilter().

441  {
442  PTrajectoryStateOnDet pTSOD = seed.startingState();
443  DetId SeedDetId(pTSOD.detId());
444  const GeomDet* geoDet = theService->trackingGeometry()->idToDet(SeedDetId);
445  TrajectoryStateOnSurface SeedTSOS =
446  trajectoryStateTransform::transientState(pTSOD, &(geoDet->surface()), &*theService->magneticField());
447  GlobalVector mom = SeedTSOS.globalMomentum();
448 
449  return mom;
450 }
MuonServiceProxy * theService
edm::ESHandle< MagneticField > magneticField() const
get the magnetic field
unsigned int detId() const
Definition: DetId.h:17
PTrajectoryStateOnDet const & startingState() const
TrajectoryStateOnSurface transientState(const PTrajectoryStateOnDet &ts, const Surface *surface, const MagneticField *field)
edm::ESHandle< GlobalTrackingGeometry > trackingGeometry() const
get the tracking geometry
GlobalVector globalMomentum() const
const GeomDet * idToDet(DetId) const override
GlobalPoint MuonSeedCleaner::SeedPosition ( const TrajectorySeed seed)
private

retrieve seed global position

Definition at line 430 of file MuonSeedCleaner.cc.

References PTrajectoryStateOnDet::detId(), TrajectoryStateOnSurface::globalPosition(), GlobalTrackingGeometry::idToDet(), MuonServiceProxy::magneticField(), TrajectorySeed::startingState(), theService, MuonServiceProxy::trackingGeometry(), and trajectoryStateTransform::transientState().

Referenced by GroupSeeds(), and seedCleaner().

430  {
431  PTrajectoryStateOnDet pTSOD = seed.startingState();
432  DetId SeedDetId(pTSOD.detId());
433  const GeomDet* geoDet = theService->trackingGeometry()->idToDet(SeedDetId);
434  TrajectoryStateOnSurface SeedTSOS =
435  trajectoryStateTransform::transientState(pTSOD, &(geoDet->surface()), &*theService->magneticField());
436  GlobalPoint pos = SeedTSOS.globalPosition();
437 
438  return pos;
439 }
MuonServiceProxy * theService
GlobalPoint globalPosition() const
edm::ESHandle< MagneticField > magneticField() const
get the magnetic field
unsigned int detId() const
Definition: DetId.h:17
PTrajectoryStateOnDet const & startingState() const
TrajectoryStateOnSurface transientState(const PTrajectoryStateOnDet &ts, const Surface *surface, const MagneticField *field)
edm::ESHandle< GlobalTrackingGeometry > trackingGeometry() const
get the tracking geometry
const GeomDet * idToDet(DetId) const override

Member Data Documentation

std::vector<int> MuonSeedCleaner::badSeedLayer

Definition at line 53 of file MuonSeedCleaner.h.

bool MuonSeedCleaner::debug
private
std::vector<int> MuonSeedCleaner::ShoweringLayers
private

Definition at line 96 of file MuonSeedCleaner.h.

SegmentContainer MuonSeedCleaner::ShoweringSegments
private

Definition at line 95 of file MuonSeedCleaner.h.

MuonServiceProxy* MuonSeedCleaner::theService
private