CMS 3D CMS Logo

TrackerDigiGeometryESModule.cc
Go to the documentation of this file.
27 
28 #include <memory>
29 #include <string>
30 
32 public:
35  std::unique_ptr<TrackerGeometry> produce(const TrackerDigiGeometryRecord&);
36 
37  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
38 
39 private:
43 
47 
52 
53  const bool applyAlignment_; // Switch to apply alignment corrections
54 };
55 
56 //__________________________________________________________________
58  : alignmentsLabel_(p.getParameter<std::string>("alignmentsLabel")),
59  myLabel_(p.getParameter<std::string>("appendToDataLabel")),
60  applyAlignment_(p.getParameter<bool>("applyAlignment")) {
61  {
62  auto cc = setWhatProduced(this);
63  const edm::ESInputTag kEmptyTag;
64  geometricDetToken_ = cc.consumesFrom<GeometricDet, IdealGeometryRecord>(kEmptyTag);
65  trackerTopoToken_ = cc.consumesFrom<TrackerTopology, TrackerTopologyRcd>(kEmptyTag);
67 
68  if (applyAlignment_) {
69  const edm::ESInputTag kAlignTag{"", alignmentsLabel_};
70  globalAlignmentToken_ = cc.consumesFrom<Alignments, GlobalPositionRcd>(kAlignTag);
71  trackerAlignmentToken_ = cc.consumesFrom<Alignments, TrackerAlignmentRcd>(kAlignTag);
74  }
75  }
76 
77  edm::LogInfo("Geometry") << "@SUB=TrackerDigiGeometryESModule"
78  << "Label '" << myLabel_ << "' " << (applyAlignment_ ? "looking for" : "IGNORING")
79  << " alignment labels '" << alignmentsLabel_ << "'.";
80 }
81 
82 //__________________________________________________________________
84 
87  descDB.add<std::string>("appendToDataLabel", "");
88  descDB.add<bool>("fromDDD", false);
89  descDB.add<bool>("applyAlignment", true);
90  descDB.add<std::string>("alignmentsLabel", "");
91  descriptions.add("trackerGeometryDB", descDB);
92 
94  desc.add<std::string>("appendToDataLabel", "");
95  desc.add<bool>("fromDDD", true);
96  desc.add<bool>("applyAlignment", true);
97  desc.add<std::string>("alignmentsLabel", "");
98  descriptions.add("trackerGeometry", desc);
99 }
100 
101 //__________________________________________________________________
102 std::unique_ptr<TrackerGeometry> TrackerDigiGeometryESModule::produce(const TrackerDigiGeometryRecord& iRecord) {
103  //
104  // Called whenever the alignments, alignment errors or global positions change
105  //
106  auto const& gD = iRecord.get(geometricDetToken_);
107 
108  auto const& tTopo = iRecord.get(trackerTopoToken_);
109 
110  auto const& ptp = iRecord.get(trackerParamsToken_);
111 
113  std::unique_ptr<TrackerGeometry> tracker(builder.build(&gD, ptp, &tTopo));
114 
115  if (applyAlignment_) {
116  // Since fake is fully working when checking for 'empty', we should get rid of applyAlignment_!
117  auto const& globalPosition = iRecord.get(globalAlignmentToken_);
118  auto const& alignments = iRecord.get(trackerAlignmentToken_);
119  auto const& alignmentErrors = iRecord.get(alignmentErrorsToken_);
120  // apply if not empty:
121  if (alignments.empty() && alignmentErrors.empty() && globalPosition.empty()) {
122  edm::LogInfo("Config") << "@SUB=TrackerDigiGeometryRecord::produce"
123  << "Alignment(Error)s and global position (label '" << alignmentsLabel_
124  << "') empty: Geometry producer (label "
125  << "'" << myLabel_ << "') assumes fake and does not apply.";
126  } else {
127  GeometryAligner ali;
129  &(alignments),
130  &(alignmentErrors),
132  }
133 
134  auto const& surfaceDeformations = iRecord.get(deformationsToken_);
135  // apply if not empty:
136  if (surfaceDeformations.empty()) {
137  edm::LogInfo("Config") << "@SUB=TrackerDigiGeometryRecord::produce"
138  << "AlignmentSurfaceDeformations (label '" << alignmentsLabel_
139  << "') empty: Geometry producer (label "
140  << "'" << myLabel_ << "') assumes fake and does not apply.";
141  } else {
142  GeometryAligner ali;
143  ali.attachSurfaceDeformations<TrackerGeometry>(tracker.get(), &(surfaceDeformations));
144  }
145  }
146 
147  return tracker;
148 }
149 
void attachSurfaceDeformations(const C *geometry, const AlignmentSurfaceDeformations *surfaceDeformations)
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:166
Class to update a given geometry with a set of alignments.
uint32_t cc[maxCellsPerHit]
Definition: gpuFishbone.h:49
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
TrackerGeometry * build(const GeometricDet *gd, const PTrackerParameters &ptp, const TrackerTopology *tTopo)
edm::ESGetToken< GeometricDet, IdealGeometryRecord > geometricDetToken_
std::unique_ptr< TrackerGeometry > produce(const TrackerDigiGeometryRecord &)
edm::ESGetToken< AlignmentErrorsExtended, TrackerAlignmentErrorExtendedRcd > alignmentErrorsToken_
edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > trackerTopoToken_
void applyAlignments(const C *geometry, const Alignments *alignments, const AlignmentErrorsExtended *alignmentErrors, const AlignTransform &globalCoordinates)
edm::ESGetToken< Alignments, GlobalPositionRcd > globalAlignmentToken_
const std::string alignmentsLabel_
Called when geometry description changes.
ParameterDescriptionBase * add(U const &iLabel, T const &value)
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:61
edm::ESGetToken< AlignmentSurfaceDeformations, TrackerSurfaceDeformationRcd > deformationsToken_
Log< level::Info, false > LogInfo
Definition: DetId.h:17
void add(std::string const &label, ParameterSetDescription const &psetDescription)
TrackerDigiGeometryESModule(const edm::ParameterSet &p)
edm::ESGetToken< PTrackerParameters, PTrackerParametersRcd > trackerParamsToken_
const AlignTransform & DetectorGlobalPosition(const Alignments &allGlobals, const DetId &id)
edm::ESGetToken< Alignments, TrackerAlignmentRcd > trackerAlignmentToken_
ProductT const & get(ESGetToken< ProductT, DepRecordT > const &iToken) const