CMS 3D CMS Logo

CreateTrackerAlignmentRcds.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Alignment/TrackerAlignment
4 // Class: CreateIdealTkAlRecords
5 //
22 //
23 // Original Author: Gregor Mittag
24 // Created: Tue, 26 Apr 2016 09:45:13 GMT
25 //
26 //
27 
28 // system include files
29 #include <memory>
30 #include <iostream>
31 
32 // user include files
41 
43 
55 
57 
64 
65 #include "CLHEP/Vector/RotationInterfaces.h"
66 
67 //
68 // class declaration
69 //
70 
72 public:
74  ~CreateIdealTkAlRecords() override;
75 
76  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
79  static std::vector<GeomDetEnumerators::SubDetector> toSubDetectors(const std::vector<std::string>& subs);
80 
81 private:
82  void analyze(const edm::Event&, const edm::EventSetup&) override;
83  void clearAlignmentInfos();
84  std::unique_ptr<TrackerGeometry> retrieveGeometry(const edm::EventSetup&);
85  void addAlignmentInfo(const GeomDet&);
86  void alignToGT(const edm::EventSetup&);
87  void writeToDB();
88 
89  // ----------member data ---------------------------
90 
98  const std::vector<GeomDetEnumerators::SubDetector> skipSubDetectors_;
99  const bool alignToGlobalTag_;
105  std::vector<uint32_t> rawIDs_;
106  std::vector<GeomDetEnumerators::SubDetector> subDets_;
107 };
108 
109 //
110 // constructors and destructor
111 //
113  : geomDetToken_(esConsumes()),
114  ptpToken_(esConsumes()),
115  ptitpToken_(esConsumes()),
116  topoToken_(esConsumes()),
117  aliToken_(esConsumes()),
118  aliErrorToken_(esConsumes()),
119  aliSurfaceToken_(esConsumes()),
120  skipSubDetectors_(toSubDetectors(iConfig.getUntrackedParameter<std::vector<std::string> >("skipSubDetectors"))),
121  alignToGlobalTag_(iConfig.getUntrackedParameter<bool>("alignToGlobalTag")),
122  createReferenceRcd_(iConfig.getUntrackedParameter<bool>("createReferenceRcd")),
123  firstEvent_(true) {}
124 
126 
127 //
128 // member functions
129 //
130 
131 // ------------ method called for each event ------------
133  if (firstEvent_) {
135  const auto tracker = retrieveGeometry(iSetup);
136 
137  auto dets = tracker->dets();
138  std::sort(dets.begin(), dets.end(), [](const auto& a, const auto& b) {
139  return a->geographicalId().rawId() < b->geographicalId().rawId();
140  });
141 
142  for (const auto& det : dets)
143  addAlignmentInfo(*det);
145  alignToGT(iSetup);
146  writeToDB();
147  firstEvent_ = false;
148  }
149 }
150 
152  switch (sub) {
154  return "PixelBarrel";
156  return "PixelEndcap";
158  return "TIB";
160  return "TOB";
162  return "TID";
164  return "TEC";
166  return "CSC";
168  return "DT";
170  return "RPCBarrel";
172  return "RPCEndcap";
174  return "GEM";
176  return "ME0";
178  return "P2OTB";
180  return "P2OTEC";
182  return "P1PXB";
184  return "P1PXEC";
186  return "P2PXB";
188  return "P2PXEC";
190  return "invalidDet";
191  default:
192  throw cms::Exception("UnknownSubdetector");
193  }
194 }
195 
197  if (sub == "PixelBarrel")
199  else if (sub == "PixelEndcap")
201  else if (sub == "TIB")
203  else if (sub == "TOB")
205  else if (sub == "TID")
207  else if (sub == "TEC")
209  else if (sub == "CSC")
211  else if (sub == "DT")
212  return GeomDetEnumerators::DT;
213  else if (sub == "RPCBarrel")
215  else if (sub == "RPCEndcap")
217  else if (sub == "GEM")
219  else if (sub == "ME0")
221  else if (sub == "P2OTB")
223  else if (sub == "P2OTEC")
225  else if (sub == "P1PXB")
227  else if (sub == "P1PXEC")
229  else if (sub == "P2PXB")
231  else if (sub == "P2PXEC")
233  else if (sub == "invalidDet")
235  else
236  throw cms::Exception("UnknownSubdetector") << sub;
237 }
238 
239 std::vector<GeomDetEnumerators::SubDetector> CreateIdealTkAlRecords::toSubDetectors(
240  const std::vector<std::string>& subs) {
241  std::vector<GeomDetEnumerators::SubDetector> result;
242  result.reserve(subs.size());
243  for (const auto& sub : subs)
244  result.emplace_back(toSubDetector(sub));
245  return result;
246 }
247 
249  alignments_.clear();
252  rawIDs_.clear();
253 }
254 
255 std::unique_ptr<TrackerGeometry> CreateIdealTkAlRecords::retrieveGeometry(const edm::EventSetup& iSetup) {
256  const GeometricDet* geometricDet = &iSetup.getData(geomDetToken_);
257  const PTrackerParameters& ptp = iSetup.getData(ptpToken_);
259  const TrackerTopology* tTopo = &iSetup.getData(topoToken_);
260 
261  TrackerGeomBuilderFromGeometricDet trackerBuilder;
262 
263  return std::unique_ptr<TrackerGeometry>{trackerBuilder.build(geometricDet, ptitp, ptp, tTopo)};
264 }
265 
267  const auto subDetector = toString(det.subDetector());
268  const auto& detId = det.geographicalId().rawId();
269  const auto& pos = det.position();
270  const auto& rot = det.rotation();
271  rawIDs_.push_back(detId);
272  subDets_.push_back(det.subDetector());
273 
274  // TrackerAlignmentRcd entry
275  if (createReferenceRcd_) {
277  } else {
278  const AlignTransform::Translation translation(pos.x(), pos.y(), pos.z());
280  CLHEP::HepRep3x3(rot.xx(), rot.xy(), rot.xz(), rot.yx(), rot.yy(), rot.yz(), rot.zx(), rot.zy(), rot.zz()));
281  const auto& eulerAngles = rotation.eulerAngles();
282  LogDebug("Alignment") << "============================================================\n"
283  << "subdetector: " << subDetector << "\n"
284  << "detId: " << detId << "\n"
285  << "------------------------------------------------------------\n"
286  << " x: " << pos.x() << "\n"
287  << " y: " << pos.y() << "\n"
288  << " z: " << pos.z() << "\n"
289  << " phi: " << eulerAngles.phi() << "\n"
290  << " theta: " << eulerAngles.theta() << "\n"
291  << " psi: " << eulerAngles.psi() << "\n"
292  << "============================================================\n";
293  alignments_.m_align.emplace_back(AlignTransform(translation, rotation, detId));
294  }
295 
296  // TrackerAlignmentErrorExtendedRcd entry
297  const AlignTransformError::SymMatrix zeroAPEs(6, 0);
298  alignmentErrors_.m_alignError.emplace_back(AlignTransformErrorExtended(zeroAPEs, detId));
299 }
300 
302  LogDebug("Alignment") << "Aligning to global tag\n";
303 
304  const Alignments* alignments = &iSetup.getData(aliToken_);
305  const AlignmentErrorsExtended* alignmentErrors = &iSetup.getData(aliErrorToken_);
306  const AlignmentSurfaceDeformations* surfaceDeformations = &iSetup.getData(aliSurfaceToken_);
307 
308  if (alignments->m_align.size() != alignmentErrors->m_alignError.size())
309  throw cms::Exception("GeometryMismatch")
310  << "Size mismatch between alignments (size=" << alignments->m_align.size()
311  << ") and alignment errors (size=" << alignmentErrors->m_alignError.size() << ")";
312 
313  std::vector<uint32_t> commonIDs;
314  auto itAlignErr = alignmentErrors->m_alignError.cbegin();
315  for (auto itAlign = alignments->m_align.cbegin(); itAlign != alignments->m_align.cend(); ++itAlign, ++itAlignErr) {
316  const auto id = itAlign->rawId();
317  auto found = std::find(rawIDs_.cbegin(), rawIDs_.cend(), id);
318  if (found != rawIDs_.cend()) {
319  if (id != itAlignErr->rawId())
320  throw cms::Exception("GeometryMismatch") << "DetId mismatch between alignments (rawId=" << id
321  << ") and alignment errors (rawId=" << itAlignErr->rawId() << ")";
322 
323  const auto index = std::distance(rawIDs_.cbegin(), found);
325  continue;
326 
327  if (alignments_.m_align[index].rawId() != alignmentErrors_.m_alignError[index].rawId())
328  throw cms::Exception("GeometryMismatch")
329  << "DetId mismatch between alignments (rawId=" << alignments_.m_align[index].rawId()
330  << ") and alignment errors (rawId=" << alignmentErrors_.m_alignError[index].rawId() << ")";
331 
332  LogDebug("Alignment") << "============================================================\n"
333  << "\nGeometry content (" << toString(subDets_[index]) << ", "
334  << alignments_.m_align[index].rawId() << "):\n"
335  << "\tx: " << alignments_.m_align[index].translation().x()
336  << "\ty: " << alignments_.m_align[index].translation().y()
337  << "\tz: " << alignments_.m_align[index].translation().z()
338  << "\tphi: " << alignments_.m_align[index].rotation().phi()
339  << "\ttheta: " << alignments_.m_align[index].rotation().theta()
340  << "\tpsi: " << alignments_.m_align[index].rotation().psi()
341  << "============================================================\n";
342  alignments_.m_align[index] = *itAlign;
343  alignmentErrors_.m_alignError[index] = *itAlignErr;
344  commonIDs.push_back(id);
345  LogDebug("Alignment") << "============================================================\n"
346  << "Global tag content (" << toString(subDets_[index]) << ", "
347  << alignments_.m_align[index].rawId() << "):\n"
348  << "\tx: " << alignments_.m_align[index].translation().x()
349  << "\ty: " << alignments_.m_align[index].translation().y()
350  << "\tz: " << alignments_.m_align[index].translation().z()
351  << "\tphi: " << alignments_.m_align[index].rotation().phi()
352  << "\ttheta: " << alignments_.m_align[index].rotation().theta()
353  << "\tpsi: " << alignments_.m_align[index].rotation().psi()
354  << "============================================================\n";
355  }
356  }
357 
358  // - surface deformations are stored differently
359  // -> different treatment
360  // - the above payloads contain also entries for ideal modules
361  // - no entry is created for ideal surfaces
362  // -> size of surface deformation payload does not necessarily match the
363  // size of the other tracker alignment payload
364  for (const auto& id : commonIDs) {
365  // search for common raw ID in surface deformation items
366  auto item = std::find_if(surfaceDeformations->items().cbegin(),
367  surfaceDeformations->items().cend(),
368  [&id](const auto& i) { return i.m_rawId == id; });
369  if (item == surfaceDeformations->items().cend())
370  continue; // not found
371 
372  // copy surface deformation item
373  const auto index = std::distance(surfaceDeformations->items().cbegin(), item);
374  const auto beginEndPair = surfaceDeformations->parameters(index);
375  std::vector<align::Scalar> params(beginEndPair.first, beginEndPair.second);
376  alignmentSurfaceDeformations_.add(item->m_rawId, item->m_parametrizationType, params);
377  }
378 }
379 
382 
384  if (!poolDb.isAvailable()) {
385  throw cms::Exception("NotAvailable") << "PoolDBOutputService not available";
386  }
387 
388  edm::LogInfo("Alignment") << "Writing ideal tracker-alignment records.";
389  poolDb->writeOne(&alignments_, since, "TrackerAlignmentRcd");
390  poolDb->writeOne(&alignmentErrors_, since, "TrackerAlignmentErrorExtendedRcd");
391  poolDb->writeOne(&alignmentSurfaceDeformations_, since, "TrackerSurfaceDeformationRcd");
392 }
393 
394 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
397  desc.setComment(
398  "Creates ideal TrackerAlignmentRcd and TrackerAlignmentErrorExtendedRcd "
399  "from the loaded tracker geometry. "
400  "PoolDBOutputService must be set up for these records.");
401  desc.addUntracked<bool>("alignToGlobalTag", false);
402  desc.addUntracked<std::vector<std::string> >("skipSubDetectors", std::vector<std::string>{});
403  desc.addUntracked<bool>("createReferenceRcd", false);
404  descriptions.add("createIdealTkAlRecords", desc);
405 }
406 
407 //define this as a plug-in
CreateIdealTkAlRecords
Definition: CreateTrackerAlignmentRcds.cc:71
GeomDet::position
const Surface::PositionType & position() const
The position (origin of the R.F.)
Definition: GeomDet.h:43
AlignmentErrorsExtended.h
GeomDetEnumerators::SubDetector
SubDetector
Definition: GeomDetEnumerators.h:10
AlignmentErrorsExtended::clear
void clear()
Clear vector without having to look into internals:
Definition: AlignmentErrorsExtended.h:17
electrons_cff.bool
bool
Definition: electrons_cff.py:366
EDAnalyzer.h
mps_fire.i
i
Definition: mps_fire.py:428
cond::TimeTypeSpecs::beginValue
Time_t beginValue
Definition: Time.h:41
GeomDetEnumerators::RPCEndcap
Definition: GeomDetEnumerators.h:20
TrackerGeometry.h
GeomDet
Definition: GeomDet.h:27
CreateIdealTkAlRecords::~CreateIdealTkAlRecords
~CreateIdealTkAlRecords() override
Definition: CreateTrackerAlignmentRcds.cc:125
GeomDetEnumerators::TID
Definition: GeomDetEnumerators.h:15
PTrackerParameters
Definition: PTrackerParameters.h:6
ESHandle.h
GeomDetEnumerators::invalidDet
Definition: GeomDetEnumerators.h:31
CalibrationSummaryClient_cfi.params
params
Definition: CalibrationSummaryClient_cfi.py:14
CreateIdealTkAlRecords::ptitpToken_
const edm::ESGetToken< PTrackerAdditionalParametersPerDet, PTrackerAdditionalParametersPerDetRcd > ptitpToken_
Definition: CreateTrackerAlignmentRcds.cc:93
CreateIdealTkAlRecords::toSubDetector
static GeomDetEnumerators::SubDetector toSubDetector(const std::string &sub)
Definition: CreateTrackerAlignmentRcds.cc:196
TrackerGeomBuilderFromGeometricDet::build
TrackerGeometry * build(const GeometricDet *gd, const PTrackerAdditionalParametersPerDet *ptitp, const PTrackerParameters &ptp, const TrackerTopology *tTopo)
Definition: TrackerGeomBuilderFromGeometricDet.cc:44
TrackerTopology
Definition: TrackerTopology.h:16
AlignTransform::Rotation
CLHEP::HepRotation Rotation
Definition: AlignTransform.h:19
pos
Definition: PixelAliasList.h:18
GeomDetEnumerators::TIB
Definition: GeomDetEnumerators.h:13
CreateIdealTkAlRecords::aliErrorToken_
const edm::ESGetToken< AlignmentErrorsExtended, TrackerAlignmentErrorExtendedRcd > aliErrorToken_
Definition: CreateTrackerAlignmentRcds.cc:96
PTrackerAdditionalParametersPerDet
Definition: PTrackerAdditionalParametersPerDet.h:9
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
Alignments.h
GeomDetEnumerators::P2OTB
Definition: GeomDetEnumerators.h:23
AlignTransform::Translation
CLHEP::Hep3Vector Translation
Definition: AlignTransform.h:18
CreateIdealTkAlRecords::clearAlignmentInfos
void clearAlignmentInfos()
Definition: CreateTrackerAlignmentRcds.cc:248
GeomDetEnumerators::TOB
Definition: GeomDetEnumerators.h:14
PTrackerAdditionalParametersPerDetRcd.h
AlignTransform.h
PTrackerParameters.h
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
edm::one::EDAnalyzer
Definition: EDAnalyzer.h:30
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
newFWLiteAna.found
found
Definition: newFWLiteAna.py:118
CreateIdealTkAlRecords::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: CreateTrackerAlignmentRcds.cc:395
edm::Service::isAvailable
bool isAvailable() const
Definition: Service.h:40
TrackerSurfaceDeformationRcd.h
CreateIdealTkAlRecords::aliSurfaceToken_
const edm::ESGetToken< AlignmentSurfaceDeformations, TrackerSurfaceDeformationRcd > aliSurfaceToken_
Definition: CreateTrackerAlignmentRcds.cc:97
CreateIdealTkAlRecords::alignToGlobalTag_
const bool alignToGlobalTag_
Definition: CreateTrackerAlignmentRcds.cc:99
TrackerAlignmentErrorExtendedRcd.h
GeomDetEnumerators::PixelBarrel
Definition: GeomDetEnumerators.h:11
MakerMacros.h
TrackerTopology.h
PoolDBOutputService.h
cond::timeTypeSpecs
const TimeTypeSpecs timeTypeSpecs[]
Definition: Time.cc:16
TrackerTopologyRcd.h
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
AlignTransformError.h
GeomDetEnumerators::P1PXEC
Definition: GeomDetEnumerators.h:26
Service.h
GeometricDet
Definition: GeometricDet.h:31
writeEcalDQMStatus.since
since
Definition: writeEcalDQMStatus.py:53
GeomDetEnumerators::P2OTEC
Definition: GeomDetEnumerators.h:24
CreateIdealTkAlRecords::rawIDs_
std::vector< uint32_t > rawIDs_
Definition: CreateTrackerAlignmentRcds.cc:105
CreateIdealTkAlRecords::ptpToken_
const edm::ESGetToken< PTrackerParameters, PTrackerParametersRcd > ptpToken_
Definition: CreateTrackerAlignmentRcds.cc:92
b
double b
Definition: hdecay.h:118
GeomDetEnumerators::CSC
Definition: GeomDetEnumerators.h:17
AlignTransform
Definition: AlignTransform.h:15
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
PbPb_ZMuSkimMuonDPG_cff.tracker
tracker
Definition: PbPb_ZMuSkimMuonDPG_cff.py:60
funct::true
true
Definition: Factorize.h:173
GeomDetEnumerators::P1PXB
Definition: GeomDetEnumerators.h:25
CreateIdealTkAlRecords::toString
static std::string toString(const GeomDetEnumerators::SubDetector &)
Definition: CreateTrackerAlignmentRcds.cc:151
GeomDetEnumerators::DT
Definition: GeomDetEnumerators.h:18
GeomDet::geographicalId
DetId geographicalId() const
The label of this GeomDet.
Definition: GeomDet.h:64
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:233
edm::ParameterSet
Definition: ParameterSet.h:47
CreateIdealTkAlRecords::geomDetToken_
const edm::ESGetToken< GeometricDet, IdealGeometryRecord > geomDetToken_
Definition: CreateTrackerAlignmentRcds.cc:91
idealTransformation.rotation
dictionary rotation
Definition: idealTransformation.py:1
a
double a
Definition: hdecay.h:119
CreateIdealTkAlRecords::retrieveGeometry
std::unique_ptr< TrackerGeometry > retrieveGeometry(const edm::EventSetup &)
Definition: CreateTrackerAlignmentRcds.cc:255
Event.h
AlignTransformErrorExtended.h
CreateIdealTkAlRecords::alignmentErrors_
AlignmentErrorsExtended alignmentErrors_
Definition: CreateTrackerAlignmentRcds.cc:103
GeomDetEnumerators::TEC
Definition: GeomDetEnumerators.h:16
CreateIdealTkAlRecords::firstEvent_
bool firstEvent_
Definition: CreateTrackerAlignmentRcds.cc:101
CreateIdealTkAlRecords::subDets_
std::vector< GeomDetEnumerators::SubDetector > subDets_
Definition: CreateTrackerAlignmentRcds.cc:106
CreateIdealTkAlRecords::alignmentSurfaceDeformations_
AlignmentSurfaceDeformations alignmentSurfaceDeformations_
Definition: CreateTrackerAlignmentRcds.cc:104
jetUpdater_cfi.sort
sort
Definition: jetUpdater_cfi.py:29
cond::runnumber
Definition: Time.h:19
PTrackerParametersRcd.h
CreateIdealTkAlRecords::addAlignmentInfo
void addAlignmentInfo(const GeomDet &)
Definition: CreateTrackerAlignmentRcds.cc:266
AlignmentSurfaceDeformations::add
bool add(align::ID rawId, int type, const std::vector< align::Scalar > &parameters)
Add a new item.
Definition: AlignmentSurfaceDeformations.h:41
edm::Service< cond::service::PoolDBOutputService >
trackerHitRTTI::vector
Definition: trackerHitRTTI.h:21
AlignmentSurfaceDeformations
Definition: AlignmentSurfaceDeformations.h:20
IdealGeometryRecord.h
TrackerAlignmentRcd.h
B2GTnPMonitor_cfi.item
item
Definition: B2GTnPMonitor_cfi.py:147
edm::EventSetup
Definition: EventSetup.h:58
CreateIdealTkAlRecords::analyze
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: CreateTrackerAlignmentRcds.cc:132
AlignmentErrorsExtended
Definition: AlignmentErrorsExtended.h:10
CreateIdealTkAlRecords::createReferenceRcd_
const bool createReferenceRcd_
Definition: CreateTrackerAlignmentRcds.cc:100
edm::ESGetToken< GeometricDet, IdealGeometryRecord >
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
CreateIdealTkAlRecords::alignments_
Alignments alignments_
Definition: CreateTrackerAlignmentRcds.cc:102
edm::EventSetup::getData
bool getData(T &iHolder) const
Definition: EventSetup.h:127
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
std
Definition: JetResolutionObject.h:76
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
CreateIdealTkAlRecords::writeToDB
void writeToDB()
Definition: CreateTrackerAlignmentRcds.cc:380
Alignments::clear
void clear()
Clear vector without having to look into internals:
Definition: Alignments.h:17
Frameworkfwd.h
PTrackerAdditionalParametersPerDet.h
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:29
AlignmentSurfaceDeformations.h
CreateIdealTkAlRecords::CreateIdealTkAlRecords
CreateIdealTkAlRecords(const edm::ParameterSet &)
Definition: CreateTrackerAlignmentRcds.cc:112
CreateIdealTkAlRecords::topoToken_
const edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > topoToken_
Definition: CreateTrackerAlignmentRcds.cc:94
Exception
Definition: hltDiff.cc:245
cond::service::PoolDBOutputService::writeOne
Hash writeOne(const T *payload, Time_t time, const std::string &recordName)
Definition: PoolDBOutputService.h:63
makeMuonMisalignmentScenario.rot
rot
Definition: makeMuonMisalignmentScenario.py:322
CreateIdealTkAlRecords::toSubDetectors
static std::vector< GeomDetEnumerators::SubDetector > toSubDetectors(const std::vector< std::string > &subs)
Definition: CreateTrackerAlignmentRcds.cc:239
AlignTransformErrorExtended
Definition: AlignTransformErrorExtended.h:13
GeomDetEnumerators::GEM
Definition: GeomDetEnumerators.h:21
CreateIdealTkAlRecords::alignToGT
void alignToGT(const edm::EventSetup &)
Definition: CreateTrackerAlignmentRcds.cc:301
EventSetup.h
AlignmentSurfaceDeformations::parameters
ParametersConstIteratorPair parameters(size_t index) const
Definition: AlignmentSurfaceDeformations.h:59
GeomDetEnumerators::PixelEndcap
Definition: GeomDetEnumerators.h:12
AlignmentPI::index
index
Definition: AlignmentPayloadInspectorHelper.h:46
AlignTransformError::SymMatrix
CLHEP::HepSymMatrix SymMatrix
Definition: AlignTransformError.h:15
TrackerGeomBuilderFromGeometricDet.h
Alignments::m_align
std::vector< AlignTransform > m_align
Definition: Alignments.h:19
TrackerGeomBuilderFromGeometricDet
Definition: TrackerGeomBuilderFromGeometricDet.h:18
AlignmentErrorsExtended::m_alignError
std::vector< AlignTransformErrorExtended > m_alignError
Definition: AlignmentErrorsExtended.h:19
GeomDetEnumerators::RPCBarrel
Definition: GeomDetEnumerators.h:19
mps_fire.result
result
Definition: mps_fire.py:311
GeomDetEnumerators::P2PXB
Definition: GeomDetEnumerators.h:27
CreateIdealTkAlRecords::skipSubDetectors_
const std::vector< GeomDetEnumerators::SubDetector > skipSubDetectors_
Definition: CreateTrackerAlignmentRcds.cc:98
cms::Exception
Definition: Exception.h:70
ParameterSet.h
GeomDetEnumerators::ME0
Definition: GeomDetEnumerators.h:22
DeDxTools::esConsumes
ESGetTokenH3DDVariant esConsumes(std::string const &Reccord, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
edm::Event
Definition: Event.h:73
HLT_FULL_cff.distance
distance
Definition: HLT_FULL_cff.py:7746
Alignments
Definition: Alignments.h:10
CreateIdealTkAlRecords::aliToken_
const edm::ESGetToken< Alignments, TrackerAlignmentRcd > aliToken_
Definition: CreateTrackerAlignmentRcds.cc:95
AlignmentSurfaceDeformations::items
const ItemVector & items() const
Get vector of all items.
Definition: AlignmentSurfaceDeformations.h:55
GeomDet::rotation
const Surface::RotationType & rotation() const
The rotation defining the local R.F.
Definition: GeomDet.h:46
GeomDet::subDetector
virtual SubDetector subDetector() const
Which subdetector.
Definition: GeomDet.cc:38
GeomDetEnumerators::P2PXEC
Definition: GeomDetEnumerators.h:28