CMS 3D CMS Logo

HGCalTrackCollectionProducer.cc
Go to the documentation of this file.
1 // S. Zenz, 12 February 2015
2 //
3 // Splits a track collection into two, based on whether they propagate to the HGCal or not
4 // Tracks with bad pt resolution (suspected fakes) are dropped and not in either collection
5 
20 
21 // for track propagation through HGC
22 // N.B. we are only propogating to first layer, so check these later
30 
31 //geometry records
35 
36 #include <memory>
37 #include <unordered_map>
38 
40 public:
42 
43 private:
44  void produce(edm::Event&, const edm::EventSetup&) override;
45  void beginLuminosityBlock(const edm::LuminosityBlock&, const edm::EventSetup&) override;
46 
48 
49  // variables needed for copied goodPtResolution function
50  // need to go back and figure out sensible values
51 
53  const std::vector<double> DPtovPtCut_;
54  const std::vector<unsigned> NHitCut_;
55  const bool useIterTracking_;
56  // const bool _useFirstLayerOnly; // always true now
57 
58  // variables needed for copied extrapolation
63  std::array<std::string, 1> hgc_names_; // 3 --> 1; extrapolate to hgcee only
64  std::array<edm::ESGetToken<HGCalGeometry, IdealGeometryRecord>, 1>
65  hgcGeometryTokens_; // 3 --> 1; extrapolate to hgcee only
66  std::array<const HGCalGeometry*, 1> hgcGeometries_; // 3 --> 1; extrapolate to hgcee only
67  std::array<std::vector<ReferenceCountingPointer<BoundDisk> >, 1> plusSurface_,
68  minusSurface_; // 3 --> 1; extrapolate to hgcee only
69  std::unique_ptr<PropagatorWithMaterial> mat_prop_;
70 
73 };
74 
76  : src_(consumes<edm::View<reco::PFRecTrack> >(iConfig.getParameter<edm::InputTag>("src"))),
77  trackQuality_((iConfig.existsAs<std::string>("trackQuality"))
78  ? reco::TrackBase::qualityByName(iConfig.getParameter<std::string>("trackQuality"))
79  : reco::TrackBase::highPurity),
80  DPtovPtCut_(iConfig.getParameter<std::vector<double> >("DPtOverPtCuts_byTrackAlgo")),
81  NHitCut_(iConfig.getParameter<std::vector<unsigned> >("NHitCuts_byTrackAlgo")),
82  useIterTracking_(iConfig.getParameter<bool>("useIterativeTracking")),
83  magneticFieldToken_(esConsumes<edm::Transition::BeginLuminosityBlock>()),
84  tkerGeomToken_(esConsumes<edm::Transition::BeginLuminosityBlock>()) {
85  LogDebug("HGCalTrackCollectionProducer")
86  << " HGCalTrackCollectionProducer::HGCalTrackCollectionProducer " << std::endl;
87 
88  const edm::ParameterSet& geoconf = iConfig.getParameterSet("hgcalGeometryNames");
89  hgc_names_[0] = geoconf.getParameter<std::string>("HGC_ECAL");
90  for (unsigned i = 0; i < hgcGeometryTokens_.size(); i++) {
91  hgcGeometryTokens_[i] = esConsumes<edm::Transition::BeginLuminosityBlock>(edm::ESInputTag("", hgc_names_[i]));
92  }
93 
94  produces<reco::PFRecTrackCollection>("TracksInHGCal");
95  produces<reco::PFRecTrackCollection>("TracksNotInHGCal");
96 }
97 
98 // From https://github.com/cms-sw/cmssw/blob/CMSSW_6_2_X_SLHC/RecoParticleFlow/PFClusterProducer/src/HGCClusterizer.cc#L441-L447 and beyond
99 // TODO: we only need the front of the calorimeter, so modify this
101  constexpr float m_pion = 0.1396;
102  // get dependencies for setting up propagator
105  // get HGC geometries (assume that layers are ordered in Z!)
106  for (unsigned i = 0; i < hgcGeometries_.size(); ++i) {
108  }
109 
110  // make propagator
111  mat_prop_ = std::make_unique<PropagatorWithMaterial>(alongMomentum, m_pion, bField_);
112  // setup HGC layers for track propagation
113  Surface::RotationType rot; //unit rotation matrix
114  for (unsigned i = 0; i < hgcGeometries_.size(); ++i) {
115  minusSurface_[i].clear();
116  plusSurface_[i].clear();
117  const HGCalDDDConstants& dddCons = hgcGeometries_[i]->topology().dddConstants();
118  std::map<float, float> zrhoCoord;
119  std::map<float, float> innerRadiusCoord;
120  auto theTrForms = dddCons.getTrForms();
121  const auto& firstLayerIt = theTrForms.back();
122  float Z(std::abs(firstLayerIt.h3v.z()));
123  // use hardcoded radii for now (FIX ME)
124  diskInnerRadius_ = 31.5;
125  diskOuterRadius_ = 161.0f;
126  LogDebug("HGCalTrackCollectionProducer") << "O HAI I'm making a bound disk with Outer R=" << diskOuterRadius_
127  << " Inner R=" << diskInnerRadius_ << " and Z=" << Z << std::endl;
132  }
133 }
134 
137  evt.getByToken(src_, trackHandle);
138  const auto& tracks = *trackHandle;
139 
140  auto outputInHGCal = std::make_unique<reco::PFRecTrackCollection>();
141  auto outputNotInHGCal = std::make_unique<reco::PFRecTrackCollection>();
142 
143  for (unsigned int i = 0; i < tracks.size(); i++) {
144  const auto track = tracks.ptrAt(i);
145  bool isGood =
147  LogDebug("HGCalTrackCollectionProducer") << "HGCalTrackCollectionProducer Track number " << i
148  << " has a goodPtResolution result of " << isGood << std::endl;
149  if (!isGood)
150  continue;
151  bool found = false;
152  const TrajectoryStateOnSurface myTSOS =
154  auto detbegin = myTSOS.globalPosition().z() > 0 ? plusSurface_.begin() : minusSurface_.begin();
155  auto detend = myTSOS.globalPosition().z() > 0 ? plusSurface_.end() : minusSurface_.end();
156  for (auto det = detbegin; det != detend; ++det) {
157  LogDebug("HGCalTrackCollectionProducer") << "at HGC detector: " << std::distance(detbegin, det) << std::endl;
158  unsigned layer_count = 1;
159  for (const auto& layer : *det) {
160  LogDebug("HGCalTrackCollectionProducer") << " at DET layer: " << layer_count++ << std::endl;
161  TrajectoryStateOnSurface piStateAtSurface = mat_prop_->propagate(myTSOS, *layer);
162  if (piStateAtSurface.isValid()) {
163  LogDebug("HGCalTrackCollectionProducer") << "Extrapolation is valid!" << std::endl;
164  GlobalPoint pt = piStateAtSurface.globalPosition();
165  if (pt.perp() < diskOuterRadius_) {
166  if (pt.perp() > diskInnerRadius_) {
167  LogDebug("HGCalTrackCollectionProducer")
168  << "(x,y,z,r)=(" << pt.x() << ", " << pt.y() << ", " << pt.z() << ", "
169  << sqrt(pt.x() * pt.x() + pt.y() * pt.y()) << ")" << std::endl;
170  if (std::abs(track->trackRef()->eta()) < 1.47)
171  LogDebug("HGCalTrackCollectionProducer") << " ETA IN BARREL REGION: " << track->trackRef()->eta()
172  << " (PT: " << track->trackRef()->pt() << ")" << std::endl;
173  found = true;
174  } else {
175  LogDebug("HGCalTrackCollectionProducer")
176  << " but r=" << pt.perp() << " < diskInnerRadius=" << diskInnerRadius_ << " so skipping "
177  << std::endl;
178  }
179  } else {
180  LogDebug("HGCalTrackCollectionProducer")
181  << " but r=" << pt.perp() << " > diskOuterRadius=" << diskOuterRadius_ << " so skipping " << std::endl;
182  }
183  } else {
184  LogDebug("HGCalTrackCollectionProducer") << "Extrapolation is NOT valid!" << std::endl;
185  }
186  }
187  }
188  if (found) {
189  LogDebug("HGCalTrackCollectionProducer") << " Track going to outputInHGCal pt eta " << track->trackRef()->pt()
190  << " " << track->trackRef()->eta() << std::endl;
191  outputInHGCal->push_back(*track);
192  } else {
193  outputNotInHGCal->push_back(*track);
194  }
195  } // track loop
196 
197  evt.put(std::move(outputInHGCal), "TracksInHGCal");
198  evt.put(std::move(outputNotInHGCal), "TracksNotInHGCal");
199 }
200 
std::array< edm::ESGetToken< HGCalGeometry, IdealGeometryRecord >, 1 > hgcGeometryTokens_
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
bool goodPtResolution(const reco::TrackRef &, const std::vector< double > &DPtovPtCut, const std::vector< unsigned > &NHitCut, bool useIterTracking, const reco::TrackBase::TrackQuality trackQuality)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
T const & getData(const ESGetToken< T, R > &iToken) const noexcept(false)
Definition: EventSetup.h:119
Quality qualityByName(std::string const &name)
TrajectoryStateOnSurface outerStateOnSurface(const reco::Track &tk, const TrackingGeometry &geom, const MagneticField *field, bool withErr=true)
T z() const
Definition: PV3DBase.h:61
TrackQuality
track quality
Definition: TrackBase.h:150
std::array< std::string, 1 > hgc_names_
ParameterSet const & getParameterSet(std::string const &) const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:528
std::array< std::vector< ReferenceCountingPointer< BoundDisk > >, 1 > minusSurface_
const std::vector< unsigned > NHitCut_
edm::EDGetTokenT< edm::View< reco::PFRecTrack > > src_
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magneticFieldToken_
GlobalPoint globalPosition() const
std::array< const HGCalGeometry *, 1 > hgcGeometries_
T sqrt(T t)
Definition: SSEVec.h:19
std::unique_ptr< PropagatorWithMaterial > mat_prop_
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
Transition
Definition: Transition.h:12
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > tkerGeomToken_
void beginLuminosityBlock(const edm::LuminosityBlock &, const edm::EventSetup &) override
HGCalTrackCollectionProducer(const edm::ParameterSet &)
const reco::TrackBase::TrackQuality trackQuality_
Disk BoundDisk
Definition: BoundDisk.h:54
const std::vector< double > DPtovPtCut_
std::array< std::vector< ReferenceCountingPointer< BoundDisk > >, 1 > plusSurface_
std::vector< HGCalParameters::hgtrform > getTrForms() const
fixed size matrix
HLT enums.
void produce(edm::Event &, const edm::EventSetup &) override
def move(src, dest)
Definition: eostools.py:511
#define LogDebug(id)