CMS 3D CMS Logo

StubFEWindows.cc
Go to the documentation of this file.
5 
6 #include <algorithm>
7 
8 using namespace std;
9 
10 namespace tmtt {
11 
12  //=== Initialize stub window sizes from TTStubProducer cfg.
13 
14  StubFEWindows::StubFEWindows(const edm::ParameterSet& pSetStubAlgo) {
15  numTiltedLayerRings_ = pSetStubAlgo.getParameter<vector<double>>("NTiltedRings");
16  windowSizeBarrelLayers_ = pSetStubAlgo.getParameter<vector<double>>("BarrelCut");
17  const auto& pSetTiltedLayer = pSetStubAlgo.getParameter<vector<edm::ParameterSet>>("TiltedBarrelCutSet");
18  const auto& pSetEncapDisks = pSetStubAlgo.getParameter<vector<edm::ParameterSet>>("EndcapCutSet");
19  windowSizeTiltedLayersRings_.reserve(pSetTiltedLayer.size());
20  for (const auto& pSet : pSetTiltedLayer) {
21  windowSizeTiltedLayersRings_.emplace_back(pSet.getParameter<vector<double>>("TiltedCut"));
22  }
23  windowSizeEndcapDisksRings_.reserve(pSetEncapDisks.size());
24  for (const auto& pSet : pSetEncapDisks) {
25  windowSizeEndcapDisksRings_.emplace_back(pSet.getParameter<vector<double>>("EndcapCut"));
26  }
27  }
28 
29  //=== Set all FE stub bend windows to zero.
30 
31  void StubFEWindows::setZero() {
32  std::fill(windowSizeBarrelLayers_.begin(), windowSizeBarrelLayers_.end(), 0.);
33  for (auto& x : windowSizeEndcapDisksRings_)
34  std::fill(x.begin(), x.end(), 0.);
35  for (auto& y : windowSizeTiltedLayersRings_)
36  std::fill(y.begin(), y.end(), 0.);
37  }
38 
39  //=== Const/non-const access to element of array giving window size for specific module.
40 
41  const double* StubFEWindows::storedWindowSize(const TrackerTopology* trackerTopo, const DetId& detId) const {
42  // Code accessing geometry inspired by L1Trigger/TrackTrigger/src/TTStubAlgorithm_official.cc
43 
44  const double* storedHalfWindow = nullptr;
45  if (detId.subdetId() == StripSubdetector::TOB) {
46  unsigned int layer = trackerTopo->layer(detId);
47  unsigned int ladder = trackerTopo->tobRod(detId);
48  int type = 2 * trackerTopo->tobSide(detId) - 3; // -1 for tilted-, 1 for tilted+, 3 for flat
49  double corr = 0;
50 
51  if (type != TrackerModule::BarrelModuleType::flat) {
52  // Tilted barrel
53  corr = (numTiltedLayerRings_.at(layer) + 1) / 2.;
54  // Corrected ring number, between 0 and barrelNTilt.at(layer), in ascending |z|
55  ladder = corr - (corr - ladder) * type;
56  storedHalfWindow = &(windowSizeTiltedLayersRings_.at(layer).at(ladder));
57  } else {
58  // Flat barrel
59  storedHalfWindow = &(windowSizeBarrelLayers_.at(layer));
60  }
61 
62  } else if (detId.subdetId() == StripSubdetector::TID) {
63  // Endcap
64  unsigned int wheel = trackerTopo->tidWheel(detId);
65  unsigned int ring = trackerTopo->tidRing(detId);
66  storedHalfWindow = &(windowSizeEndcapDisksRings_.at(wheel).at(ring));
67  }
68  return storedHalfWindow;
69  }
70 
71  double* StubFEWindows::storedWindowSize(const TrackerTopology* trackerTopo, const DetId& detId) {
72  // Code accessing geometry inspired by L1Trigger/TrackTrigger/src/TTStubAlgorithm_official.cc
73 
74  // Scott Meyers's solution to give const & non-const versions of same function, without
75  // code duplication.
76  return const_cast<double*>((static_cast<const StubFEWindows*>(this))->storedWindowSize(trackerTopo, detId));
77  }
78 } // namespace tmtt
TrackerTopology
Definition: TrackerTopology.h:16
TrackerTopology::layer
unsigned int layer(const DetId &id) const
Definition: TrackerTopology.cc:47
TrackerTopology::tidRing
unsigned int tidRing(const DetId &id) const
Definition: TrackerTopology.h:218
TrackerTopology::tobRod
unsigned int tobRod(const DetId &id) const
Definition: TrackerTopology.h:195
TrackerTopology::tidWheel
unsigned int tidWheel(const DetId &id) const
Definition: TrackerTopology.h:201
DetId
Definition: DetId.h:17
TrackerTopology.h
alignCSCRings.corr
dictionary corr
Definition: alignCSCRings.py:124
TrackerModule.h
DetId::subdetId
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum)
Definition: DetId.h:48
ntuplemaker.fill
fill
Definition: ntuplemaker.py:304
edm::ParameterSet
Definition: ParameterSet.h:36
makeMuonMisalignmentScenario.wheel
wheel
Definition: makeMuonMisalignmentScenario.py:319
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
type
type
Definition: HCALResponse.h:21
std
Definition: JetResolutionObject.h:76
StubFEWindows.h
PVValHelper::ladder
Definition: PVValidationHelpers.h:72
relativeConstraints.ring
ring
Definition: relativeConstraints.py:68
StripSubdetector::TOB
static constexpr auto TOB
Definition: StripSubdetector.h:18
tmtt
=== This is the base class for the linearised chi-squared track fit algorithms.
Definition: ChiSquaredFit4.h:6
StripSubdetector.h
StripSubdetector::TID
static constexpr auto TID
Definition: StripSubdetector.h:17
TrackerTopology::tobSide
unsigned int tobSide(const DetId &id) const
Definition: TrackerTopology.h:180