CMS 3D CMS Logo

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

#include <TrackerSeedCleaner.h>

Public Types

typedef std::vector< TrajectorySeedtkSeeds
 

Public Member Functions

virtual void clean (const reco::TrackRef &, const RectangularEtaPhiTrackingRegion &region, tkSeeds &)
 the cleaner More...
 
virtual void init (const MuonServiceProxy *service)
 intizialization More...
 
virtual void setEvent (const edm::Event &)
 setEvent More...
 
 TrackerSeedCleaner (const edm::ParameterSet &pset, edm::ConsumesCollector &iC)
 constructor More...
 
virtual ~TrackerSeedCleaner ()
 destructor More...
 

Private Attributes

edm::EDGetTokenT< reco::BeamSpotbeamspotToken_
 
edm::Handle< reco::BeamSpotbsHandle_
 
std::string builderName_
 
bool cleanBySharedHits
 
edm::InputTag theBeamSpotTag
 
const edm::EventtheEvent
 
const MuonServiceProxytheProxyService
 
RedundantSeedCleanertheRedundantCleaner
 
edm::ESHandle< TransientTrackingRecHitBuildertheTTRHBuilder
 
bool useDirection_Cleaner
 
bool usePt_Cleaner
 

Detailed Description

Seeds Cleaner based on direction

Author
A. Grelli - Purdue University, Pavia University

Definition at line 38 of file TrackerSeedCleaner.h.

Member Typedef Documentation

Definition at line 40 of file TrackerSeedCleaner.h.

Constructor & Destructor Documentation

TrackerSeedCleaner::TrackerSeedCleaner ( const edm::ParameterSet pset,
edm::ConsumesCollector iC 
)
inline

constructor

Definition at line 42 of file TrackerSeedCleaner.h.

References edm::ConsumesCollector::consumes(), edm::ParameterSet::getParameter(), init, and AlCaHLTBitMon_QueryRunRegistry::string.

43  : theProxyService(nullptr), theEvent(nullptr) {
44  builderName_ = pset.getParameter<std::string>("TTRHBuilder");
45  theBeamSpotTag = pset.getParameter<edm::InputTag>("beamSpot");
46  useDirection_Cleaner = pset.getParameter<bool>("directionCleaner");
47  usePt_Cleaner = pset.getParameter<bool>("ptCleaner");
48  cleanBySharedHits = pset.getParameter<bool>("cleanerFromSharedHits");
50  }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
edm::InputTag theBeamSpotTag
const edm::Event * theEvent
const MuonServiceProxy * theProxyService
edm::EDGetTokenT< reco::BeamSpot > beamspotToken_
virtual TrackerSeedCleaner::~TrackerSeedCleaner ( )
inlinevirtual

destructor

Definition at line 56 of file TrackerSeedCleaner.h.

References clean(), and HLT_2018_cff::region.

56 {}

Member Function Documentation

void TrackerSeedCleaner::clean ( const reco::TrackRef muR,
const RectangularEtaPhiTrackingRegion region,
tkSeeds seeds 
)
virtual

the cleaner

Definition at line 57 of file TrackerSeedCleaner.cc.

References SiPixelRawToDigiRegional_cfi::deltaPhi, TrackingRegion::direction(), PV3DBase< T, PVType, FrameType >::eta(), generateTowerEtThresholdLUT::etaRange, RectangularEtaPhiTrackingRegion::etaRange(), TrajectoryStateOnSurface::freeState(), TrajectoryStateOnSurface::globalMomentum(), LogDebug, PV3DBase< T, PVType, FrameType >::perp(), PV3DBase< T, PVType, FrameType >::phi(), RectangularEtaPhiTrackingRegion::phiMargin(), TrackingRegion::ptMin(), ptMin, rpcPointValidation_cfi::recHit, mps_fire::result, TkTrackingRegionsMargin< T >::right(), SurveyInfoScenario_cff::seed, trajectoryStateTransform::transientState(), PV3DBase< T, PVType, FrameType >::x(), reco::BeamSpot::x0(), PV3DBase< T, PVType, FrameType >::y(), reco::BeamSpot::y0(), PV3DBase< T, PVType, FrameType >::z(), and reco::BeamSpot::z0().

59  {
60  // call the shared input cleaner
63 
65 
66  LogDebug("TrackerSeedCleaner") << seeds.size() << " trajectory seeds to the events before cleaning" << endl;
67 
68  //check the validity otherwise vertexing
69  const reco::BeamSpot& bs = *bsHandle_;
70  /*reco track and seeds as arguments. Seeds eta and phi are checked and
71  based on deviation from L2 eta and phi seed is accepted or not*/
72 
73  std::vector<TrajectorySeed> result;
74 
75  TSCBLBuilderNoMaterial tscblBuilder;
76  // PerigeeConversions tspConverter;
77  for (TrajectorySeedCollection::iterator seed = seeds.begin(); seed < seeds.end(); ++seed) {
78  if (seed->nHits() < 2)
79  continue;
80  //get parameters and errors from the seed state
83  seed->startingState(), recHit->surface(), theProxyService->magneticField().product());
84 
85  TrajectoryStateClosestToBeamLine tsAtClosestApproachSeed =
86  tscblBuilder(*state.freeState(), bs); //as in TrackProducerAlgorithms
87  if (!tsAtClosestApproachSeed.isValid())
88  continue;
89  GlobalPoint vSeed1 = tsAtClosestApproachSeed.trackStateAtPCA().position();
90  GlobalVector pSeed = tsAtClosestApproachSeed.trackStateAtPCA().momentum();
91  GlobalPoint vSeed(vSeed1.x() - bs.x0(), vSeed1.y() - bs.y0(), vSeed1.z() - bs.z0());
92 
93  //eta,phi info from seeds
94  double etaSeed = state.globalMomentum().eta();
95  double phiSeed = pSeed.phi();
96 
97  //if the limits are too stringent rescale limits
99  typedef TkTrackingRegionsMargin<float> Margin;
100 
101  Range etaRange = region.etaRange();
102  double etaLimit = (fabs(fabs(etaRange.max()) - fabs(etaRange.mean())) < 0.1)
103  ? 0.1
104  : fabs(fabs(etaRange.max()) - fabs(etaRange.mean()));
105 
106  Margin phiMargin = region.phiMargin();
107  double phiLimit = (phiMargin.right() < 0.1) ? 0.1 : phiMargin.right();
108 
109  double ptSeed = pSeed.perp();
110  double ptMin = (region.ptMin() > 3.5) ? 3.5 : region.ptMin();
111  // Clean
112  bool inEtaRange = etaSeed >= (etaRange.mean() - etaLimit) && etaSeed <= (etaRange.mean() + etaLimit);
113  bool inPhiRange = (fabs(deltaPhi(phiSeed, double(region.direction().phi()))) < phiLimit);
114  // pt cleaner
115  bool inPtRange = ptSeed >= ptMin && ptSeed <= 2 * (muR->pt());
116 
117  // save efficiency don't clean triplets with pt cleaner
118  if (seed->nHits() == 3)
119  inPtRange = true;
120 
121  // use pt and angle cleaners
122  if (inPtRange && usePt_Cleaner && !useDirection_Cleaner) {
123  result.push_back(*seed);
124  LogDebug("TrackerSeedCleaner") << " Keeping the seed : this seed passed pt selection";
125  }
126 
127  // use only angle default option
128  if (inEtaRange && inPhiRange && !usePt_Cleaner && useDirection_Cleaner) {
129  result.push_back(*seed);
130  LogDebug("TrackerSeedCleaner") << " Keeping the seed : this seed passed direction selection";
131  }
132 
133  // use all the cleaners
134  if (inEtaRange && inPhiRange && inPtRange && usePt_Cleaner && useDirection_Cleaner) {
135  result.push_back(*seed);
136  LogDebug("TrackerSeedCleaner") << " Keeping the seed : this seed passed direction and pt selection";
137  }
138 
139  LogDebug("TrackerSeedCleaner") << " eta for current seed " << etaSeed << "\n"
140  << " phi for current seed " << phiSeed << "\n"
141  << " eta for L2 track " << muR->eta() << "\n"
142  << " phi for L2 track " << muR->phi() << "\n";
143  }
144 
145  //the new seeds collection
146  if (!result.empty() && (useDirection_Cleaner || usePt_Cleaner))
147  seeds.swap(result);
148 
149  LogDebug("TrackerSeedCleaner") << seeds.size() << " trajectory seeds to the events after cleaning" << endl;
150 
151  return;
152 }
#define LogDebug(id)
double z0() const
z coordinate
Definition: BeamSpot.h:65
T perp() const
Definition: PV3DBase.h:69
PixelRecoRange< float > Range
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
T y() const
Definition: PV3DBase.h:60
void define(std::vector< TrajectorySeed > &)
collection definition
RedundantSeedCleaner * theRedundantCleaner
GlobalVector const & direction() const
the direction around which region is constructed
const MuonServiceProxy * theProxyService
FreeTrajectoryState const * freeState(bool withErrors=true) const
edm::Handle< reco::BeamSpot > bsHandle_
T z() const
Definition: PV3DBase.h:61
std::shared_ptr< TrackingRecHit const > RecHitPointer
virtual RecHitPointer build(const TrackingRecHit *p) const =0
build a tracking rechit from an existing rechit
TrajectoryStateOnSurface transientState(const PTrajectoryStateOnDet &ts, const Surface *surface, const MagneticField *field)
edm::ESHandle< TransientTrackingRecHitBuilder > theTTRHBuilder
float ptMin() const
minimal pt of interest
T eta() const
Definition: PV3DBase.h:73
GlobalVector globalMomentum() const
double y0() const
y coordinate
Definition: BeamSpot.h:63
T x() const
Definition: PV3DBase.h:59
double x0() const
x coordinate
Definition: BeamSpot.h:61
const Range & etaRange() const
allowed eta range [eta_min, eta_max] interval
void TrackerSeedCleaner::init ( const MuonServiceProxy service)
virtual

intizialization

Definition at line 43 of file TrackerSeedCleaner.cc.

References HLT_2018_cff::RedundantSeedCleaner.

43  {
45 
47 }
RedundantSeedCleaner * theRedundantCleaner
const MuonServiceProxy * theProxyService
void TrackerSeedCleaner::setEvent ( const edm::Event event)
virtual

setEvent

Definition at line 52 of file TrackerSeedCleaner.cc.

52 { event.getByToken(beamspotToken_, bsHandle_); }
edm::Handle< reco::BeamSpot > bsHandle_
edm::EDGetTokenT< reco::BeamSpot > beamspotToken_

Member Data Documentation

edm::EDGetTokenT<reco::BeamSpot> TrackerSeedCleaner::beamspotToken_
private

Definition at line 68 of file TrackerSeedCleaner.h.

edm::Handle<reco::BeamSpot> TrackerSeedCleaner::bsHandle_
private

Definition at line 67 of file TrackerSeedCleaner.h.

std::string TrackerSeedCleaner::builderName_
private

Definition at line 71 of file TrackerSeedCleaner.h.

bool TrackerSeedCleaner::cleanBySharedHits
private

Definition at line 73 of file TrackerSeedCleaner.h.

edm::InputTag TrackerSeedCleaner::theBeamSpotTag
private

Definition at line 66 of file TrackerSeedCleaner.h.

const edm::Event* TrackerSeedCleaner::theEvent
private

Definition at line 64 of file TrackerSeedCleaner.h.

const MuonServiceProxy* TrackerSeedCleaner::theProxyService
private

Definition at line 63 of file TrackerSeedCleaner.h.

RedundantSeedCleaner* TrackerSeedCleaner::theRedundantCleaner
private

Definition at line 69 of file TrackerSeedCleaner.h.

edm::ESHandle<TransientTrackingRecHitBuilder> TrackerSeedCleaner::theTTRHBuilder
private

Definition at line 72 of file TrackerSeedCleaner.h.

bool TrackerSeedCleaner::useDirection_Cleaner
private

Definition at line 73 of file TrackerSeedCleaner.h.

bool TrackerSeedCleaner::usePt_Cleaner
private

Definition at line 73 of file TrackerSeedCleaner.h.