CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
TrackerDigiGeometryESModule Class Reference
Inheritance diagram for TrackerDigiGeometryESModule:
edm::ESProducer edm::ESProxyFactoryProducer edm::eventsetup::DataProxyProvider

Public Member Functions

std::unique_ptr< TrackerGeometryproduce (const TrackerDigiGeometryRecord &)
 
 TrackerDigiGeometryESModule (const edm::ParameterSet &p)
 
 ~TrackerDigiGeometryESModule () override
 
- Public Member Functions inherited from edm::ESProducer
 ESProducer ()
 
 ESProducer (const ESProducer &)=delete
 
ESProxyIndex const * getTokenIndices (unsigned int iIndex) const
 
ESProducer const & operator= (const ESProducer &)=delete
 
template<typename Record >
void updateFromMayConsumes (unsigned int iIndex, const Record &iRecord)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &) final
 
 ~ESProducer () noexcept(false) override
 
- Public Member Functions inherited from edm::ESProxyFactoryProducer
 ESProxyFactoryProducer ()
 
 ESProxyFactoryProducer (const ESProxyFactoryProducer &)=delete
 
const ESProxyFactoryProduceroperator= (const ESProxyFactoryProducer &)=delete
 
 ~ESProxyFactoryProducer () noexcept(false) override
 
- Public Member Functions inherited from edm::eventsetup::DataProxyProvider
void createKeyedProxies (EventSetupRecordKey const &key, unsigned int nConcurrentIOVs)
 
 DataProxyProvider ()
 
 DataProxyProvider (const DataProxyProvider &)=delete
 
const ComponentDescriptiondescription () const
 
void fillRecordsNotAllowingConcurrentIOVs (std::set< EventSetupRecordKey > &recordsNotAllowingConcurrentIOVs) const
 
virtual void initConcurrentIOVs (EventSetupRecordKey const &key, unsigned int nConcurrentIOVs)
 
bool isUsingRecord (const EventSetupRecordKey &key) const
 
KeyedProxieskeyedProxies (const EventSetupRecordKey &iRecordKey, unsigned int iovIndex=0)
 
const DataProxyProvideroperator= (const DataProxyProvider &)=delete
 
void setAppendToDataLabel (const edm::ParameterSet &)
 
void setDescription (const ComponentDescription &iDescription)
 
std::set< EventSetupRecordKeyusingRecords () const
 
virtual ~DataProxyProvider () noexcept(false)
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::eventsetup::DataProxyProvider
static void prevalidate (ConfigurationDescriptions &)
 

Private Attributes

edm::ESGetToken< AlignmentErrorsExtended, TrackerAlignmentErrorExtendedRcdalignmentErrorsToken_
 
const std::string alignmentsLabel_
 Called when geometry description changes. More...
 
const bool applyAlignment_
 
edm::ESGetToken< AlignmentSurfaceDeformations, TrackerSurfaceDeformationRcddeformationsToken_
 
edm::ESGetToken< GeometricDet, IdealGeometryRecordgeometricDetToken_
 
edm::ESGetToken< Alignments, GlobalPositionRcdglobalAlignmentToken_
 
const std::string myLabel_
 
edm::ESGetToken< Alignments, TrackerAlignmentRcdtrackerAlignmentToken_
 
edm::ESGetToken< PTrackerParameters, PTrackerParametersRcdtrackerParamsToken_
 
edm::ESGetToken< TrackerTopology, TrackerTopologyRcdtrackerTopoToken_
 

Additional Inherited Members

- Protected Types inherited from edm::ESProxyFactoryProducer
using EventSetupRecordKey = eventsetup::EventSetupRecordKey
 
- Protected Types inherited from edm::eventsetup::DataProxyProvider
using KeyedProxiesVector = std::vector< std::pair< DataKey, std::shared_ptr< DataProxy > >>
 
- Protected Member Functions inherited from edm::ESProducer
template<typename T >
auto setWhatProduced (T *iThis, const char *iLabel)
 
template<typename T >
auto setWhatProduced (T *iThis, const es::Label &iLabel={})
 
template<typename T >
auto setWhatProduced (T *iThis, const std::string &iLabel)
 
template<typename T , typename TDecorator >
auto setWhatProduced (T *iThis, const TDecorator &iDec, const es::Label &iLabel={})
 
template<typename T , typename TReturn , typename TRecord >
auto setWhatProduced (T *iThis, TReturn(T ::*iMethod)(const TRecord &), const es::Label &iLabel={})
 
template<typename T , typename TReturn , typename TRecord , typename TArg >
ESConsumesCollectorT< TRecord > setWhatProduced (T *iThis, TReturn(T ::*iMethod)(const TRecord &), const TArg &iDec, const es::Label &iLabel={})
 
- Protected Member Functions inherited from edm::ESProxyFactoryProducer
template<class TFactory >
void registerFactory (std::unique_ptr< TFactory > iFactory, const std::string &iLabel=std::string())
 
virtual void registerFactoryWithKey (const EventSetupRecordKey &iRecord, std::unique_ptr< eventsetup::ProxyFactoryBase > iFactory, const std::string &iLabel=std::string())
 
KeyedProxiesVector registerProxies (const EventSetupRecordKey &, unsigned int iovIndex) override
 
- Protected Member Functions inherited from edm::eventsetup::DataProxyProvider
template<class T >
void usingRecord ()
 
void usingRecordWithKey (const EventSetupRecordKey &key)
 

Detailed Description

Definition at line 31 of file TrackerDigiGeometryESModule.cc.

Constructor & Destructor Documentation

◆ TrackerDigiGeometryESModule()

TrackerDigiGeometryESModule::TrackerDigiGeometryESModule ( const edm::ParameterSet p)

Definition at line 57 of file TrackerDigiGeometryESModule.cc.

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 }

References alignmentErrorsToken_, alignmentsLabel_, applyAlignment_, deformationsToken_, geometricDetToken_, globalAlignmentToken_, myLabel_, edm::ESProducer::setWhatProduced(), trackerAlignmentToken_, trackerParamsToken_, and trackerTopoToken_.

◆ ~TrackerDigiGeometryESModule()

TrackerDigiGeometryESModule::~TrackerDigiGeometryESModule ( )
override

Definition at line 83 of file TrackerDigiGeometryESModule.cc.

83 {}

Member Function Documentation

◆ fillDescriptions()

void TrackerDigiGeometryESModule::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 85 of file TrackerDigiGeometryESModule.cc.

85  {
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 }

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), and AlCaHLTBitMon_QueryRunRegistry::string.

◆ produce()

std::unique_ptr< TrackerGeometry > TrackerDigiGeometryESModule::produce ( const TrackerDigiGeometryRecord iRecord)

Definition at line 102 of file TrackerDigiGeometryESModule.cc.

102  {
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 }

References alignmentErrorsToken_, alignmentsLabel_, applyAlignment_, GeometryAligner::applyAlignments(), GeometryAligner::attachSurfaceDeformations(), TrackerGeomBuilderFromGeometricDet::build(), deformationsToken_, align::DetectorGlobalPosition(), geometricDetToken_, edm::eventsetup::DependentRecordImplementation< RecordT, ListT >::get(), globalAlignmentToken_, myLabel_, DetId::Tracker, PbPb_ZMuSkimMuonDPG_cff::tracker, trackerAlignmentToken_, trackerParamsToken_, and trackerTopoToken_.

Member Data Documentation

◆ alignmentErrorsToken_

edm::ESGetToken<AlignmentErrorsExtended, TrackerAlignmentErrorExtendedRcd> TrackerDigiGeometryESModule::alignmentErrorsToken_
private

Definition at line 50 of file TrackerDigiGeometryESModule.cc.

Referenced by produce(), and TrackerDigiGeometryESModule().

◆ alignmentsLabel_

const std::string TrackerDigiGeometryESModule::alignmentsLabel_
private

Called when geometry description changes.

Definition at line 41 of file TrackerDigiGeometryESModule.cc.

Referenced by produce(), and TrackerDigiGeometryESModule().

◆ applyAlignment_

const bool TrackerDigiGeometryESModule::applyAlignment_
private

Definition at line 53 of file TrackerDigiGeometryESModule.cc.

Referenced by produce(), and TrackerDigiGeometryESModule().

◆ deformationsToken_

edm::ESGetToken<AlignmentSurfaceDeformations, TrackerSurfaceDeformationRcd> TrackerDigiGeometryESModule::deformationsToken_
private

Definition at line 51 of file TrackerDigiGeometryESModule.cc.

Referenced by produce(), and TrackerDigiGeometryESModule().

◆ geometricDetToken_

edm::ESGetToken<GeometricDet, IdealGeometryRecord> TrackerDigiGeometryESModule::geometricDetToken_
private

Definition at line 44 of file TrackerDigiGeometryESModule.cc.

Referenced by produce(), and TrackerDigiGeometryESModule().

◆ globalAlignmentToken_

edm::ESGetToken<Alignments, GlobalPositionRcd> TrackerDigiGeometryESModule::globalAlignmentToken_
private

Definition at line 48 of file TrackerDigiGeometryESModule.cc.

Referenced by produce(), and TrackerDigiGeometryESModule().

◆ myLabel_

const std::string TrackerDigiGeometryESModule::myLabel_
private

Definition at line 42 of file TrackerDigiGeometryESModule.cc.

Referenced by produce(), and TrackerDigiGeometryESModule().

◆ trackerAlignmentToken_

edm::ESGetToken<Alignments, TrackerAlignmentRcd> TrackerDigiGeometryESModule::trackerAlignmentToken_
private

Definition at line 49 of file TrackerDigiGeometryESModule.cc.

Referenced by produce(), and TrackerDigiGeometryESModule().

◆ trackerParamsToken_

edm::ESGetToken<PTrackerParameters, PTrackerParametersRcd> TrackerDigiGeometryESModule::trackerParamsToken_
private

Definition at line 46 of file TrackerDigiGeometryESModule.cc.

Referenced by produce(), and TrackerDigiGeometryESModule().

◆ trackerTopoToken_

edm::ESGetToken<TrackerTopology, TrackerTopologyRcd> TrackerDigiGeometryESModule::trackerTopoToken_
private

Definition at line 45 of file TrackerDigiGeometryESModule.cc.

Referenced by produce(), and TrackerDigiGeometryESModule().

TrackerDigiGeometryESModule::trackerParamsToken_
edm::ESGetToken< PTrackerParameters, PTrackerParametersRcd > trackerParamsToken_
Definition: TrackerDigiGeometryESModule.cc:46
edm::ESInputTag
Definition: ESInputTag.h:87
edm::ParameterSetDescription::add
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Definition: ParameterSetDescription.h:95
TrackerDigiGeometryESModule::alignmentsLabel_
const std::string alignmentsLabel_
Called when geometry description changes.
Definition: TrackerDigiGeometryESModule.cc:41
PTrackerParameters
Definition: PTrackerParameters.h:6
TrackerTopology
Definition: TrackerTopology.h:16
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
edm::LogInfo
Definition: MessageLogger.h:254
edm::ESProducer::setWhatProduced
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:138
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
TrackerGeomBuilderFromGeometricDet::build
TrackerGeometry * build(const GeometricDet *gd, const PTrackerParameters &ptp, const TrackerTopology *tTopo)
Definition: TrackerGeomBuilderFromGeometricDet.cc:43
GeometryAligner::attachSurfaceDeformations
void attachSurfaceDeformations(C *geometry, const AlignmentSurfaceDeformations *surfaceDeformations)
Definition: GeometryAligner.h:120
TrackerAlignmentRcd
Definition: TrackerAlignmentRcd.h:6
TrackerDigiGeometryESModule::alignmentErrorsToken_
edm::ESGetToken< AlignmentErrorsExtended, TrackerAlignmentErrorExtendedRcd > alignmentErrorsToken_
Definition: TrackerDigiGeometryESModule.cc:50
GlobalPositionRcd
Definition: GlobalPositionRcd.h:6
PTrackerParametersRcd
Definition: PTrackerParametersRcd.h:9
DetId
Definition: DetId.h:17
TrackerSurfaceDeformationRcd
Definition: TrackerSurfaceDeformationRcd.h:6
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
TrackerDigiGeometryESModule::geometricDetToken_
edm::ESGetToken< GeometricDet, IdealGeometryRecord > geometricDetToken_
Definition: TrackerDigiGeometryESModule.cc:44
GeometricDet
Definition: GeometricDet.h:30
edm::eventsetup::DependentRecordImplementation::get
ProductT const & get(ESGetToken< ProductT, DepRecordT > const &iToken) const
Definition: DependentRecordImplementation.h:112
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
PbPb_ZMuSkimMuonDPG_cff.tracker
tracker
Definition: PbPb_ZMuSkimMuonDPG_cff.py:60
DetId::Tracker
Definition: DetId.h:25
align::DetectorGlobalPosition
const AlignTransform & DetectorGlobalPosition(const Alignments &allGlobals, const DetId &id)
Definition: DetectorGlobalPosition.cc:10
TrackerDigiGeometryESModule::globalAlignmentToken_
edm::ESGetToken< Alignments, GlobalPositionRcd > globalAlignmentToken_
Definition: TrackerDigiGeometryESModule.cc:48
TrackerDigiGeometryESModule::trackerTopoToken_
edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > trackerTopoToken_
Definition: TrackerDigiGeometryESModule.cc:45
TrackerDigiGeometryESModule::myLabel_
const std::string myLabel_
Definition: TrackerDigiGeometryESModule.cc:42
AlignmentSurfaceDeformations
Definition: AlignmentSurfaceDeformations.h:20
TrackerDigiGeometryESModule::trackerAlignmentToken_
edm::ESGetToken< Alignments, TrackerAlignmentRcd > trackerAlignmentToken_
Definition: TrackerDigiGeometryESModule.cc:49
cc
AlignmentErrorsExtended
Definition: AlignmentErrorsExtended.h:10
TrackerGeomBuilderFromGeometricDet
Definition: TrackerGeomBuilderFromGeometricDet.h:17
TrackerDigiGeometryESModule::applyAlignment_
const bool applyAlignment_
Definition: TrackerDigiGeometryESModule.cc:53
TrackerTopologyRcd
Definition: TrackerTopologyRcd.h:10
Alignments
Definition: Alignments.h:10
TrackerAlignmentErrorExtendedRcd
Definition: TrackerAlignmentErrorExtendedRcd.h:6
GeometryAligner::applyAlignments
void applyAlignments(C *geometry, const Alignments *alignments, const AlignmentErrorsExtended *alignmentErrors, const AlignTransform &globalCoordinates)
Definition: GeometryAligner.h:52
IdealGeometryRecord
Definition: IdealGeometryRecord.h:27
TrackerDigiGeometryESModule::deformationsToken_
edm::ESGetToken< AlignmentSurfaceDeformations, TrackerSurfaceDeformationRcd > deformationsToken_
Definition: TrackerDigiGeometryESModule.cc:51
GeometryAligner
Class to update a given geometry with a set of alignments.
Definition: GeometryAligner.h:33
TrackerGeometry
Definition: TrackerGeometry.h:14