29 : doTracker_{
config.getUntrackedParameter<
bool>(
"doTracker")},
30 doMuon_{
config.getUntrackedParameter<
bool>(
"doMuon")},
31 useExtras_{
config.getUntrackedParameter<
bool>(
"useExtras")},
39 stNFixAlignables_{
config.getParameter<
int>(
"nFixAlignables")},
40 stRandomShift_{
config.getParameter<
double>(
"randomShift")},
41 stRandomRotation_{
config.getParameter<
double>(
"randomRotation")},
42 applyDbAlignment_{
config.getUntrackedParameter<
bool>(
"applyDbAlignment")},
43 checkDbAlignmentValidity_{
config.getUntrackedParameter<
bool>(
"checkDbAlignmentValidity")},
44 doMisalignmentScenario_{
config.getParameter<
bool>(
"doMisalignmentScenario")},
45 saveToDB_{
config.getParameter<
bool>(
"saveToDB")},
46 saveApeToDB_{
config.getParameter<
bool>(
"saveApeToDB")},
47 saveDeformationsToDB_{
config.getParameter<
bool>(
"saveDeformationsToDB")},
48 useSurvey_{
config.getParameter<
bool>(
"useSurvey")},
49 enableAlignableUpdates_{
config.getParameter<
bool>(
"enableAlignableUpdates")},
74 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::AlignmentProducerBase";
76 const auto&
algoConfig = config_.getParameterSet(
"algoConfig");
77 if (config_.existsAs<
bool>(
"runAtPCL")) {
79 runAtPCL_ = config_.getParameter<
bool>(
"runAtPCL");
81 if (
algoConfig.existsAs<
bool>(
"runAtPCL") && (runAtPCL_ !=
algoConfig.getParameter<
bool>(
"runAtPCL"))) {
82 throw cms::Exception(
"BadConfig") <<
"Inconsistent settings for 'runAtPCL' in configuration of the " 83 <<
"alignment producer and the alignment algorithm.";
86 }
else if (
algoConfig.existsAs<
bool>(
"runAtPCL")) {
88 runAtPCL_ =
algoConfig.getParameter<
bool>(
"runAtPCL");
95 createAlignmentAlgorithm(iC);
97 createCalibrations(iC);
108 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::startProcessing" 112 throw cms::Exception(
"LogicError") <<
"@SUB=AlignmentProducerBase::startProcessing\n" 113 <<
"Trying to start event processing before initializing the alignment " 123 iCal->startNewLoop();
136 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::terminateProcessing" 137 <<
"Terminating algorithm.";
156 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::processEvent" 157 <<
"EventSetup-Record changed.";
174 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::processEvent" 175 <<
"Skipping event. The current configuration of the alignment algorithm " 176 <<
"does not need to process any events.";
184 for (
int i = 10;
i < 10000000;
i *= 10) {
186 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::processEvent" 187 <<
"Events processed: " <<
nevent_;
198 for (
auto iter = handleTrajTracksCollection->
begin(); iter != handleTrajTracksCollection->
end(); ++iter) {
207 clusterValueMapPtr = &(*clusterValueMap);
217 edm::LogError(
"Alignment") <<
"@SUB=AlignmentProducerBase::processEvent" 218 <<
"No track collection found: skipping event";
228 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::beginRunImpl" 229 <<
"EventSetup-Record changed.";
246 if (
firstRun_ > static_cast<cond::Time_t>(
run.id().run())) {
261 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::endRunImpl" 262 <<
"No Tk LAS beams to forward to algorithm.";
294 for (
const auto& miter :
monitors) {
305 iCalib.getParameter<
std::string>(
"calibrationName"), iCalib, iC));
363 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::initAlignmentAlgorithm" 381 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::initAlignmentAlgorithm" 382 <<
"Initializing alignment algorithm.";
392 throw cms::Exception(
"BadConfig") <<
"@SUB=AlignmentProducerBase::createCalibrations\n" 393 <<
"Configured " <<
calibrations_.size() <<
" calibration(s) " 394 <<
"for algorithm not supporting it.";
413 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::initAlignmentAlgorithm" 422 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::initBeamSpot" 423 <<
"Initializing AlignableBeamSpot";
437 trackerGeometry_ = std::shared_ptr<TrackerGeometry>(trackerBuilder.
build(geometricDet, ptitp, *ptp, tTopo));
458 applyDB<TrackerGeometry, TrackerAlignmentRcd, TrackerAlignmentErrorExtendedRcd>(
469 applyDB<DTGeometry, DTAlignmentRcd, DTAlignmentErrorExtendedRcd>(
476 applyDB<CSCGeometry, CSCAlignmentRcd, CSCAlignmentErrorExtendedRcd>(
483 applyDB<GEMGeometry, GEMAlignmentRcd, GEMAlignmentErrorExtendedRcd>(
523 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::buildParameterStore" 524 <<
"Creating AlignmentParameterBuilder";
538 const auto& alignables = alignmentParameterBuilder.alignables();
539 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::buildParameterStore" 540 <<
"got " << alignables.size() <<
" alignables";
544 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::buildParameterStore" 545 <<
"AlignmentParameterStore created!";
554 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::applyMisalignment" 555 <<
"Applying misalignment scenario to " << (
doTracker_ ?
"tracker" :
"")
570 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::applyMisalignment" 571 <<
"NOT applying misalignment scenario!";
582 std::ostringstream
output;
585 output <<
"Adding random flat shift of max size " <<
shift <<
" and adding random flat rotation of max size " <<
rot 588 std::vector<bool> commSel(0);
594 <<
"[AlignmentProducerBase::simpleMisalignment_]\n" 595 <<
"Expect selection string '" <<
selection <<
"' to be at least of length " 597 <<
"(Most probably you have to adjust the parameter 'parameterSelectorSimple'.)";
599 for (
const auto& cIter : cSel) {
600 commSel.push_back(cIter ==
'0' ?
false :
true);
602 output <<
"parameters defined by (" <<
selection <<
"), representing (x,y,z,alpha,beta,gamma),";
604 output <<
"the active parameters of each alignable,";
606 output <<
" in " << (
local ?
"local" :
"global") <<
" frame.";
608 for (
const auto& ali : alivec) {
609 std::vector<bool> mysel(commSel.empty() ? ali->alignmentParameters()->selector() : commSel);
612 double s0 = 0., s1 = 0., s2 = 0.;
614 s0 =
shift * double(random() % 1000 - 500) / 500.;
616 s1 =
shift * double(random() % 1000 - 500) / 500.;
618 s2 =
shift * double(random() % 1000 - 500) / 500.;
632 r(1) =
rot * double(random() % 1000 - 500) / 500.;
634 r(2) =
rot * double(random() % 1000 - 500) / 500.;
636 r(3) =
rot * double(random() % 1000 - 500) / 500.;
640 ali->rotateInLocalFrame(mrot);
642 ali->rotateInGlobalFrame(mrot);
648 output <<
"No simple misalignment added!";
650 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::simpleMisalignment" <<
output.str();
655 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::applyAlignmentsToGeometry" 656 <<
"Now physically apply alignments to geometry...";
663 throw cms::Exception(
"LogicError") <<
"@SUB=AlignmentProducerBase::applyAlignmentsToGeometry\n" 664 <<
"Trying to apply tracker alignment before creating it.";
668 std::unique_ptr<AlignmentErrorsExtended> alignmentErrExt{
alignableTracker_->alignmentErrors()};
669 std::unique_ptr<AlignmentSurfaceDeformations> aliDeforms{
alignableTracker_->surfaceDeformations()};
677 throw cms::Exception(
"LogicError") <<
"@SUB=AlignmentProducerBase::applyAlignmentsToGeometry\n" 678 <<
"Trying to apply muon alignment before creating it.";
681 std::unique_ptr<Alignments> dtAlignments{
alignableMuon_->dtAlignments()};
682 std::unique_ptr<Alignments> cscAlignments{
alignableMuon_->cscAlignments()};
683 std::unique_ptr<Alignments> gemAlignments{
alignableMuon_->gemAlignments()};
685 std::unique_ptr<AlignmentErrorsExtended> dtAlignmentErrExt{
alignableMuon_->dtAlignmentErrorsExtended()};
686 std::unique_ptr<AlignmentErrorsExtended> cscAlignmentErrExt{
alignableMuon_->cscAlignmentErrorsExtended()};
687 std::unique_ptr<AlignmentErrorsExtended> gemAlignmentErrExt{
alignableMuon_->gemAlignmentErrorsExtended()};
701 edm::LogInfo(
"Alignment") <<
"watcher tksurveyrcd: " << tkSurveyBool;
702 edm::LogInfo(
"Alignment") <<
"watcher tksurveyerrrcd: " << tkSurveyErrBool;
703 if (tkSurveyBool || tkSurveyErrBool) {
704 edm::LogInfo(
"Alignment") <<
"ADDING THE SURVEY INFORMATION";
721 if (DTSurveyBool || DTSurveyErrBool || CSCSurveyBool || CSCSurveyErrBool) {
731 for (
const auto&
barrel : barrels)
738 for (
const auto&
endcap : endcaps)
748 for (
const auto&
comp : comps)
754 throw cms::Exception(
"DatabaseError") <<
"Error reading survey info from DB. Mismatched id!";
785 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::finish" 786 <<
"No payload to be stored!";
802 const auto& uniqueRunRanges =
805 std::vector<AlgebraicVector> beamSpotParameters;
807 for (
const auto& iRunRange : uniqueRunRanges) {
820 if (!beamSpotAliPars) {
821 throw cms::Exception(
"LogicError") <<
"@SUB=AlignmentProducerBase::storeAlignmentsToDB\n" 822 <<
"First alignable of alignableExtras_ does not have " 823 <<
"'BeamSpotAlignmentParameters', while it should have.";
826 beamSpotParameters.push_back(beamSpotAliPars->parameters());
832 std::ostringstream bsOutput;
834 auto itPar = beamSpotParameters.cbegin();
835 for (
auto iRunRange = uniqueRunRanges.cbegin(); iRunRange != uniqueRunRanges.cend(); ++iRunRange, ++itPar) {
836 bsOutput <<
"Run range: " << (*iRunRange).first <<
" - " << (*iRunRange).second <<
"\n";
837 bsOutput <<
" Displacement: x=" << (*itPar)[0] <<
", y=" << (*itPar)[1] <<
"\n";
838 bsOutput <<
" Slope: dx/dz=" << (*itPar)[2] <<
", dy/dz=" << (*itPar)[3] <<
"\n";
841 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::storeAlignmentsToDB" 842 <<
"Parameters for alignable beamspot:\n" 861 const auto alignmentSurfaceDeformations = *(
alignableTracker_->surfaceDeformations());
862 this->
writeDB(alignmentSurfaceDeformations,
"TrackerSurfaceDeformationRcd",
time);
873 auto alignmentErrors =
alignableMuon_->dtAlignmentErrorsExtended();
874 this->
writeDB(alignments,
"DTAlignmentRcd", alignmentErrors,
"DTAlignmentErrorExtendedRcd", muonGlobal,
time);
879 this->
writeDB(alignments,
"CSCAlignmentRcd", alignmentErrors,
"CSCAlignmentErrorExtendedRcd", muonGlobal,
time);
896 delete tempAlignments;
897 delete tempAlignmentErrorsExtended;
898 throw cms::Exception(
"NotAvailable") <<
"PoolDBOutputService not available";
901 if (globalCoordinates
902 && globalCoordinates->
transform() != AlignTransform::Transform::Identity) {
908 alignments, alignmentErrors, *globalCoordinates, tempAlignments, tempAlignmentErrorsExtended);
911 delete alignmentErrors;
913 edm::LogInfo(
"Alignment") <<
"@SUB=AlignmentProducerBase::writeDB" 914 <<
"globalCoordinates removed from alignments (" << alignRcd <<
") and errors (" 919 edm::LogInfo(
"Alignment") <<
"Writing Alignments for run " <<
time <<
" to " << alignRcd <<
".";
922 delete tempAlignments;
926 edm::LogInfo(
"Alignment") <<
"Writing AlignmentErrorsExtended for run " <<
time <<
" to " << errRcd <<
".";
929 delete tempAlignmentErrorsExtended;
940 throw cms::Exception(
"NotAvailable") <<
"PoolDBOutputService not available";
944 edm::LogInfo(
"Alignment") <<
"Writing AlignmentSurfaceDeformations for run " <<
time <<
" to " 945 << surfaceDeformationRcd <<
".";
void attachSurfaceDeformations(const C *geometry, const AlignmentSurfaceDeformations *surfaceDeformations)
const TimeTypeSpecs timeTypeSpecs[]
AlignmentProducerBase(const edm::ParameterSet &, edm::ConsumesCollector)
void terminateProcessing(const edm::EventSetup *=nullptr)
Terminate processing of events.
T getParameter(std::string const &) const
void readInSurveyRcds(const edm::EventSetup &)
Reads in survey records.
const bool applyDbAlignment_
void applyAlignmentsToDB(const edm::EventSetup &)
void createGeometries(const edm::EventSetup &, const TrackerTopology *)
Creates ideal geometry from IdealGeometryRecord.
std::vector< ConstTrajTrackPair > ConstTrajTrackPairs
Builds a scenario from configuration and applies it to the alignable Muon.
AlignmentMonitors monitors_
Alignment producer base class.
const AlignableSurface & surface() const
Return the Surface (global position and orientation) of the object.
const edm::ESGetToken< AlignmentErrorsExtended, CSCAlignmentErrorExtendedRcd > cscAliErrToken_
def create(alignables, pedeDump, additionalData, outputFile, config)
edm::ESWatcher< DTAlignmentErrorExtendedRcd > watchDTAlErrExtRcd_
edm::ESWatcher< DTAlignmentRcd > watchDTAlRcd_
Class to update a given geometry with a set of alignments.
bool processEvent(const edm::Event &, const edm::EventSetup &)
Process event.
void initAlignmentAlgorithm(const edm::EventSetup &, bool update=false)
void writeDB(Alignments *, const std::string &, AlignmentErrorsExtended *, const std::string &, const AlignTransform *, cond::Time_t) const
const edm::ESGetToken< GEMGeometry, MuonGeometryRecord > gemGeomToken_
std::vector< ParameterSet > VParameterSet
TrackerGeometry * build(const GeometricDet *gd, const PTrackerAdditionalParametersPerDet *ptitp, const PTrackerParameters &ptp, const TrackerTopology *tTopo)
const edm::ESGetToken< DTGeometry, MuonGeometryRecord > dtGeomToken_
std::vector< char > convertParamSel(const std::string &selString) const
Converting std::string into std::vector<char>
const bool enableAlignableUpdates_
ParameterSet const & getParameterSet(std::string const &) const
virtual ~AlignmentProducerBase() noexcept(false)
void buildParameterStore()
Creates the , which manages all Alignables.
align::Scalar width() const
virtual bool getAliClusterValueMap(const edm::Event &, edm::Handle< AliClusterValueMap > &)=0
std::unique_ptr< AlignableMuon > alignableMuon_
const edm::ESGetToken< Alignments, DTSurveyRcd > dtSurveyToken_
double dydz() const
dydz slope
const Alignments * surveyValues_
void setWidth(align::Scalar width)
Log< level::Error, false > LogError
std::unique_ptr< AlignmentParameterStore > alignmentParameterStore_
const double stRandomShift_
std::vector< AlignTransform > m_align
virtual bool getTkFittedLasBeamCollection(const edm::Run &, edm::Handle< TkFittedLasBeamCollection > &)=0
const edm::ESGetToken< Alignments, CSCAlignmentRcd > cscAliToken_
define event information passed to algorithms
std::shared_ptr< TrackerGeometry > trackerGeometry_
const edm::ESGetToken< SurveyErrors, CSCSurveyErrorExtendedRcd > cscSurvErrorToken_
const std::string tkAliRcdName_
void applyAlignments(const C *geometry, const Alignments *alignments, const AlignmentErrorsExtended *alignmentErrors, const AlignTransform &globalCoordinates)
const_iterator end() const
last iterator over the map (read only)
void setLength(align::Scalar length)
edm::ESWatcher< GlobalPositionRcd > watchGlobalPositionRcd_
virtual bool getTsosVectorCollection(const edm::Run &, edm::Handle< TsosVectorCollection > &)=0
double x0() const
x coordinate
void writeForRunRange(cond::Time_t)
const edm::ESGetToken< Alignments, TrackerAlignmentRcd > tkAliToken_
unsigned long long Time_t
const edm::ESGetToken< Alignments, TrackerSurveyRcd > tkSurveyToken_
const edm::ESGetToken< Alignments, GEMAlignmentRcd > gemAliToken_
std::unique_ptr< AlignableExtras > alignableExtras_
void createMonitors(edm::ConsumesCollector &)
Creates the monitors.
const edm::ESGetToken< PTrackerParameters, PTrackerParametersRcd > ptpToken_
RunRanges makeUniqueRunRanges(const edm::VParameterSet &runRanges, const RunNumber &defaultRun)
void createAlignmentAlgorithm(edm::ConsumesCollector &)
Creates the choosen alignment algorithm.
const edm::ESGetToken< SurveyErrors, DTSurveyErrorExtendedRcd > dtSurvErrorToken_
void removeGlobalTransform(const Alignments *alignments, const AlignmentErrorsExtended *alignmentErrors, const AlignTransform &globalCoordinates, Alignments *newAlignments, AlignmentErrorsExtended *newAlignmentErrorsExtended)
edm::ESWatcher< TrackerSurveyErrorExtendedRcd > watchTkSurveyErrExtRcd_
void endRunImpl(const edm::Run &, const edm::EventSetup &)
end run
void addSurveyInfo(Alignable *)
Adds survey info to an Alignable.
virtual StructureType alignableObjectId() const =0
Return the alignable type identifier.
Abs< T >::type abs(const T &t)
Hash writeOneIOV(const T &payload, Time_t time, const std::string &recordName)
std::unique_ptr< AlignableTracker > alignableTracker_
void endLuminosityBlockImpl(const edm::LuminosityBlock &, const edm::EventSetup &)
end lumi block
void createAlignables(const TrackerTopology *, bool update=false)
std::unique_ptr< const Alignments > globalPositions_
GlobalPositions that might be read from DB, nullptr otherwise.
bool getData(T &iHolder) const
AlignmentAlgorithmBase::EndRunInfo EndRunInfo
double y0() const
y coordinate
const edm::ESGetToken< Alignments, DTAlignmentRcd > dtAliToken_
const bool doMisalignmentScenario_
virtual const Alignables & components() const =0
Return vector of all direct components.
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
void startProcessing()
Start processing of events.
edm::ESWatcher< IdealGeometryRecord > watchIdealGeometryRcd_
virtual bool getBeamSpot(const edm::Event &, edm::Handle< reco::BeamSpot > &)=0
edm::ESWatcher< CSCAlignmentErrorExtendedRcd > watchCSCAlErrExtRcd_
Log< level::Info, false > LogInfo
const int stNFixAlignables_
const edm::ESGetToken< AlignmentErrorsExtended, GEMAlignmentErrorExtendedRcd > gemAliErrToken_
edm::ESHandle< DTGeometry > muonDTGeometry_
edm::ESWatcher< TrackerSurfaceDeformationRcd > watchTrackerSurDeRcd_
align::ID id() const
Return the ID of Alignable, i.e. DetId of 'first' component GeomDet(Unit).
AlgebraicVector EulerAngles
void createCalibrations(edm::ConsumesCollector &)
Creates the calibrations.
edm::Handle< reco::BeamSpot > beamSpot_
void applyMisalignment()
Applies misalignment scenario to .
const edm::ESGetToken< AlignmentErrorsExtended, TrackerAlignmentErrorExtendedRcd > tkAliErrToken_
const edm::ESGetToken< PTrackerAdditionalParametersPerDet, PTrackerAdditionalParametersPerDetRcd > ptitpToken_
void setSurvey(const SurveyDet *)
Set survey info.
double dxdz() const
dxdz slope
align::Scalar length() const
const align::RunRanges uniqueRunRanges_
void storeAlignmentsToDB()
Writes Alignments (i.e. Records) to database-file.
const edm::ESGetToken< CSCGeometry, MuonGeometryRecord > cscGeomToken_
virtual bool getTrajTrackAssociationCollection(const edm::Event &, edm::Handle< TrajTrackAssociationCollection > &)=0
bool check(const edm::EventSetup &iSetup)
std::vector< Alignable * > Alignables
const double stRandomRotation_
edm::ESWatcher< TrackerAlignmentRcd > watchTrackerAlRcd_
const edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > ttopoToken_
double z0() const
z coordinate
void applyScenario(const edm::ParameterSet &scenario) override
Apply misalignment scenario to the tracker.
void beginLuminosityBlockImpl(const edm::LuminosityBlock &, const edm::EventSetup &)
begin lumi block
const_iterator begin() const
first iterator over the map (read only)
edm::ESWatcher< TrackerAlignmentErrorExtendedRcd > watchTrackerAlErrorExtRcd_
bool setupChanged(const edm::EventSetup &)
Checks if one of the EventSetup-Records has changed.
VParameterSet const & getParameterSetVector(std::string const &name) const
edm::ESWatcher< TrackerSurveyRcd > watchTkSurveyRcd_
const edm::ESGetToken< SurveyErrors, TrackerSurveyErrorExtendedRcd > tkSurvErrorToken_
const edm::ESGetToken< AlignmentSurfaceDeformations, TrackerSurfaceDeformationRcd > tkSurfDefToken_
void applyAlignmentsToGeometry()
RotationType toMatrix(const EulerAngles &)
Convert rotation angles about x-, y-, z-axes to matrix.
const edm::ESGetToken< Alignments, CSCSurveyRcd > cscSurveyToken_
const edm::ESGetToken< GeometricDet, IdealGeometryRecord > geomDetToken_
static unsigned int const shift
edm::ESHandle< CSCGeometry > muonCSCGeometry_
edm::ESWatcher< CSCAlignmentRcd > watchCSCAlRcd_
const AlignTransform & DetectorGlobalPosition(const Alignments &allGlobals, const DetId &id)
const edm::InputTag tkLasBeamTag_
LAS beams in edm::Run (ignore if empty)
const SurveyErrors * surveyErrors_
void initBeamSpot(const edm::Event &)
Initializes Beamspot of Alignables .
std::pair< const Trajectory *, const reco::Track * > ConstTrajTrackPair
void applyScenario(const edm::ParameterSet &scenario) override
Apply misalignment scenario to the Muon.
eventInfo
add run, event number and lumi section
const edm::ESGetToken< Alignments, GlobalPositionRcd > gprToken_
CalibrationsOwner calibrations_
std::vector< SurveyError > m_surveyErrors
const edm::ESGetToken< AlignmentErrorsExtended, DTAlignmentErrorExtendedRcd > dtAliErrToken_
const bool saveDeformationsToDB_
edm::ESHandle< GEMGeometry > muonGEMGeometry_
Builds a scenario from configuration and applies it to the alignable tracker.
void beginRunImpl(const edm::Run &, const edm::EventSetup &)
begin run
const edm::InputTag clusterValueMapTag_
ValueMap containing associtaion cluster-flag.
void simpleMisalignment(const align::Alignables &, const std::string &, float, float, bool)
Applies misalignment scenario to .
edm::ParameterSet config_
cond::RealTimeType< cond::runnumber >::type RunNumber
std::unique_ptr< AlignmentAlgorithmBase > alignmentAlgo_