17 #include "GaudiKernel/ITHistSvc.h"
18 #include "GaudiKernel/SmartDataPtr.h"
19 #include "GaudiKernel/RndmGenerators.h"
20 #include "GaudiKernel/IRndmGenSvc.h"
23 #include "Identifier/Identifier.h"
53 std::ostringstream
os;
54 os <<
"\nAlignment x = (" << initialAlignment.getTranslation().x() /
CLHEP::micrometer <<
") micron\n";
55 os <<
"Alignment y = (" << initialAlignment.getTranslation().y() /
CLHEP::micrometer <<
") micron\n";
56 os <<
"Alignment z = (" << initialAlignment.getTranslation().z() /
CLHEP::micrometer <<
") micron\n";
57 os <<
"Alignment x phi = (" << initialAlignment.getRotation().phiX() /
CLHEP::deg <<
") degree\n";
58 os <<
"Alignment x Theta = (" << initialAlignment.getRotation().thetaX() /
CLHEP::deg <<
") degree\n";
59 os <<
"Alignment y phi = (" << initialAlignment.getRotation().phiY() /
CLHEP::deg <<
") degree\n";
60 os <<
"Alignment y Theta = (" << initialAlignment.getRotation().thetaY() /
CLHEP::deg <<
") degree\n";
61 os <<
"Alignment z phi = (" << initialAlignment.getRotation().phiZ() /
CLHEP::deg <<
") degree\n";
62 os <<
"Alignment z Theta = (" << initialAlignment.getRotation().thetaZ() /
CLHEP::deg <<
") degree\n";
74 m_pixelIdHelper(nullptr),
75 m_sctIdHelper(nullptr),
76 m_trtIdHelper(nullptr),
77 m_IDAlignDBTool(
"InDetAlignDBTool",this),
78 m_trtaligndbservice(
"TRT_AlignDbSvc",
name),
79 m_asciiFileNameBase(
"MisalignmentSet"),
80 m_SQLiteTag(
"test_tag"),
82 m_createFreshDB(true),
83 m_MisalignmentMode(0),
87 m_Misalign_maxShift(1*
CLHEP::
mm),
91 m_IBLBowingTshift(0.),
92 m_ScalePixelBarrel(1.),
93 m_ScalePixelEndcap(1.),
98 m_VisualizationLookupTree(nullptr),
100 m_HumanReadableID(-1),
163 SmartIF<ITHistSvc> hist_svc{Gaudi::svcLocator()->service(
"THistSvc")};
172 NTupleFilePtr file1(
ntupleSvc(),
"/NTUPLES/CREATEMISALIGN");
174 NTuplePtr
nt(
ntupleSvc(),
"/NTUPLES/CREATEMISALIGN/InitialAlignment");
176 nt =
ntupleSvc()->book(
"/NTUPLES/CREATEMISALIGN/InitialAlignment", CLID_ColumnWiseTuple,
"InitialAlignment");
198 msg(MSG::ERROR) <<
"Failed to book InitialAlignment ntuple." <<
endmsg;
215 ATH_MSG_INFO(
"Dry run, no misalignment will be generated." );
218 return StatusCode::SUCCESS;
250 return StatusCode::FAILURE;
256 return StatusCode::SUCCESS;
266 return StatusCode::SUCCESS;
275 if (not sctDetEleHandle.
isValid() or elements==
nullptr) {
312 msg() << commonAlignmentOutput(InitialAlignment);
325 if (not pixelDetEleHandle.
isValid() or elements==
nullptr) {
331 const Identifier Pixel_ModuleID = element->identify();
361 msg() << commonAlignmentOutput(InitialAlignment);
376 std::map< Identifier, std::vector<double> > trtModulesWithCOG;
381 if (not trtDetEleHandle.
isValid() or elements==
nullptr) {
389 const Identifier TRTID_orig = element->identify();
391 bool insertSuccess{};
392 std::tie(
std::ignore, insertSuccess) = trtModulesWithCOG.insert({TRTID,std::vector<double>(4,0.)});
393 if (not insertSuccess){
394 ATH_MSG_VERBOSE(
"No insert was performed, identifier was already in the trtModulesWithCOG map");
397 unsigned int nStraws = element->nStraws();
398 for (
unsigned int l = 0;
l<nStraws;
l++) {
400 trtModulesWithCOG[TRTID].at(0) += strawcenter.x();
401 trtModulesWithCOG[TRTID].at(1) += strawcenter.y();
402 trtModulesWithCOG[TRTID].at(2) += strawcenter.z();
403 trtModulesWithCOG[TRTID].at(3) += 1.;
407 ATH_MSG_DEBUG(
"this strawlayer has " << nStraws <<
" straws." );
408 ATH_MSG_DEBUG(
"strawcount of this module: " << trtModulesWithCOG[TRTID].at(3) );
413 std::map< Identifier, std::vector<double> >::const_iterator iter2;
414 for (iter2 = trtModulesWithCOG.begin(); iter2!=trtModulesWithCOG.end(); ++iter2) {
416 double nStraws = iter2->second.at(3);
419 m_ModuleList[TRTID] = HepGeom::Point3D<double>(iter2->second.at(0)/nStraws, iter2->second.at(1)/nStraws,iter2->second.at(2)/nStraws);
428 msg() << commonAlignmentOutput(InitialAlignment);
444 SmartIF<IRndmGenSvc> randsvc{Gaudi::svcLocator()->service(
"RndmGenSvc")};
490 pixelElements = *pixelDetEleHandle;
491 if (not pixelDetEleHandle.
isValid() or pixelElements==
nullptr) {
493 return StatusCode::FAILURE;
499 sctElements = *sctDetEleHandle;
500 if (not sctDetEleHandle.
isValid() or sctElements==
nullptr) {
502 return StatusCode::FAILURE;
515 else ATH_MSG_WARNING(
"Trying to access a Pixel module when running with no Pixel!");
520 else ATH_MSG_WARNING(
"Trying to access an SCT/Strop module when running with no SCT/Strip!");
526 ATH_MSG_WARNING(
"Something fishy, identifier is neither Pixel, nor SCT or TRT!" );
541 ATH_MSG_WARNING(
"Apparently in a silicon detector, but SiModule is a null pointer");
544 const HepGeom::Point3D<double> center = iter->second;
547 double r = center.rho();
548 double phi = center.phi();
549 double z = center.z();
556 double ScaleFactor = 1.;
591 ATH_MSG_WARNING(
"Something fishy, identifier is neither Pixel, nor SCT or TRT!" );
602 msg() <<
"localToGlobal transformation:" <<
endmsg;
605 msg() << localToGlobal.xx() <<
" " << localToGlobal.xy() <<
" " << localToGlobal.xz() <<
endmsg;
606 msg() << localToGlobal.yx() <<
" " << localToGlobal.yy() <<
" " << localToGlobal.yz() <<
endmsg;
607 msg() << localToGlobal.zx() <<
" " << localToGlobal.zy() <<
" " << localToGlobal.zz() <<
endmsg;
620 CLHEP::HepRotation rot;
623 if (ScaleFactor == 0.0) {
641 double randMisX = RandMisX();
642 double randMisY = RandMisY();
643 double randMisZ = RandMisZ();
645 double randMisaplha = RandMisalpha();
646 double randMisbeta = RandMisbeta();
647 double randMisgamma = RandMisgamma();
649 CLHEP::HepRotation rot;
650 HepGeom::Vector3D<double> shift;
653 if (ScaleFactor == 0.0) {
657 shift = HepGeom::Vector3D<double>(randMisX, randMisY, randMisZ);
658 rot = CLHEP::HepRotationX(randMisaplha) * CLHEP::HepRotationY(randMisbeta) * CLHEP::HepRotationZ(randMisgamma);
661 shift = HepGeom::Vector3D<double>(0, 0, 0);
662 rot = CLHEP::HepRotationX(randMisaplha) * CLHEP::HepRotationY(randMisbeta) * CLHEP::HepRotationZ(randMisgamma);
665 shift = HepGeom::Vector3D<double>(randMisX, randMisY, randMisZ);
666 rot = CLHEP::HepRotationX(0) * CLHEP::HepRotationY(0) * CLHEP::HepRotationZ(0);
668 else { shift = HepGeom::Vector3D<double>(0, 0, 0);
669 rot = CLHEP::HepRotationX(0) * CLHEP::HepRotationY(0) * CLHEP::HepRotationZ(0);
685 ATH_MSG_DEBUG(
"will not move this module for IBL temp distortion " );
689 parameterizedTrafo = HepGeom::Translate3D(
deltaX,0,0);
701 ATH_MSG_DEBUG(
"will not move TRT endcap for radial distortion " );
704 deltaR =
r/maxRadius * maxDeltaR;
711 ATH_MSG_DEBUG(
"will not move TRT endcap for elliptical distortion " );
714 deltaR =
cos ( 2*phi ) *
r/maxRadius * maxDeltaR;
721 ATH_MSG_DEBUG(
"will not move TRT endcap for funnel distortion " );
724 deltaR = 2. *
z/maxLength * maxDeltaR;
727 ATH_MSG_DEBUG(
"Wrong misalignment mode entered, doing nothing." );
740 deltaPhi =
r/maxRadius * maxAngle + minRadius/
r * maxAngleInner;
747 ATH_MSG_DEBUG(
"will not move TRT endcap for clamshell distortion " );
762 parameterizedTrafo = HepGeom::RotateZ3D(
deltaPhi);
770 deltaZ =
r/maxRadius * maxDeltaZ;
776 ATH_MSG_DEBUG(
"will not move TRT endcap for skew distortion " );
784 deltaZ = 2. *
z/maxLength * maxDeltaZ;
791 parameterizedTrafo = HepGeom::Translate3D(0,0,
deltaZ);
804 ATH_MSG_DEBUG(
"additional rotation for TRT barrel module!" );
805 HepGeom::Transform3D realLocalToGlobalTRT = HepGeom::Translate3D(center.x(),center.y(),center.z());
808 alignmentTrafo = parameterizedTrafo * realLocalToGlobalTRT * parameterizedTrafo * realLocalToGlobalTRT.inverse();
811 HepGeom::Transform3D realLocalToGlobalTRT = HepGeom::Translate3D(center.x(),center.y(),center.z());
812 double deltaAlpha = (-2.) *
r * maxAngle/maxLength;
815 CLHEP::HepRotation twistForTRTRotation(HepGeom::Vector3D<double>(center.x(),center.y(),center.z()), deltaAlpha );
819 alignmentTrafo = realLocalToGlobalTRT * twistForTRT * realLocalToGlobalTRT.inverse();
822 HepGeom::Transform3D realLocalToGlobalTRT = HepGeom::Translate3D(center.x(),center.y(),center.z());
823 double deltaAlpha = (-2.) * maxDeltaR/maxLength;
827 HepGeom::Vector3D<double> normalVector(center.x(),center.y(),center.z());
828 HepGeom::Vector3D<double> beamVector(0.,0.,1.);
829 HepGeom::Vector3D<double> rotationAxis = normalVector.cross(beamVector);
830 CLHEP::HepRotation twistForTRTRotation(rotationAxis, deltaAlpha );
833 alignmentTrafo = realLocalToGlobalTRT * twistForTRT * realLocalToGlobalTRT.inverse();
839 alignmentTrafo = parameterizedTrafo;
843 alignmentTrafo = localToGlobal.inverse() * parameterizedTrafo * localToGlobal;
850 msg() <<
"Align Transformation x phi = (" << alignmentTrafo.getRotation().phiX() /
CLHEP::deg <<
")" <<
endmsg;
851 msg() <<
"Align Transformation x Theta = (" << alignmentTrafo.getRotation().thetaX() /
CLHEP::deg <<
")" <<
endmsg;
852 msg() <<
"Align Transformation y phi = (" << alignmentTrafo.getRotation().phiY() /
CLHEP::deg <<
")" <<
endmsg;
853 msg() <<
"Align Transformation y Theta = (" << alignmentTrafo.getRotation().thetaY() /
CLHEP::deg <<
")" <<
endmsg;
854 msg() <<
"Align Transformation z phi = (" << alignmentTrafo.getRotation().phiZ() /
CLHEP::deg <<
")" <<
endmsg;
855 msg() <<
"Align Transformation z Theta = (" << alignmentTrafo.getRotation().thetaZ() /
CLHEP::deg <<
")" <<
endmsg;
859 if ( std::abs(alignmentTrafo.getTranslation().x()) < 1
e-10) {
860 HepGeom::Vector3D<double>
861 zeroSuppressedTranslation(0,alignmentTrafo.getTranslation().y(),alignmentTrafo.
862 getTranslation().
z());
866 if ( std::abs(alignmentTrafo.getTranslation().y()) < 1
e-10) {
867 HepGeom::Vector3D<double>
868 zeroSuppressedTranslation(alignmentTrafo.getTranslation().x(),0,alignmentTrafo.
869 getTranslation().
z());
873 if ( std::abs(alignmentTrafo.getTranslation().z()) < 1
e-10) {
874 HepGeom::Vector3D<double>
875 zeroSuppressedTranslation(alignmentTrafo.getTranslation().x(),alignmentTrafo.getTranslation().y(),0);
879 if ( std::abs(alignmentTrafo.getRotation().getDelta()) < 1
e-10) {
880 CLHEP::HepRotation zeroSuppressedRotation(alignmentTrafo.getRotation());
881 zeroSuppressedRotation.setDelta(0.);
908 ATH_MSG_WARNING(
"Something fishy, identifier is neither Pixel, nor SCT or TRT!" );
933 HepGeom::Point3D<double> alignedPosGlobal = LocalaGlobal * alignedPosLocal;
941 double radialShift_x = SCT_Center[0];
942 double radialShift_y = SCT_Center[1];
945 HepGeom::Point3D<double> SCT_endcap_alignedPosGlobal = LocalaaGlobal * alignedPosLocal;
990 ATH_MSG_WARNING(
"Something fishy, identifier is neither Pixel, nor SCT or TRT!" );
994 if (StatusCode::SUCCESS!=
ntupleSvc()->writeRecord(
"NTUPLES/CREATEMISALIGN/InitialAlignment")) {
1010 ATH_MSG_INFO(
"Writing IoV information to mysql file" );
1017 ATH_MSG_ERROR(
"Write of AlignableTransforms (TRT) failed" );
1019 ATH_MSG_INFO(
"AlignableTransforms for TRT were written" );
1024 ATH_MSG_INFO(
"Writing IoV information for TRT to mysql file" );
1025 if ( StatusCode::SUCCESS
1032 return StatusCode::SUCCESS;
1039 HepGeom::Vector3D<double> AlignShift(AlignParams[0],AlignParams[1],AlignParams[2]);
1040 CLHEP::HepRotation AlignRot;
1042 AlignRot = CLHEP::HepRotationX(AlignParams[3]) * CLHEP::HepRotationY(AlignParams[4]) * CLHEP::HepRotationZ(AlignParams[5]);
1045 return AlignTransform;
1057 if (barrel_ec==1) barrel_ec=-1;
1091 double T = 15 + temp_shift;
1092 return 1.53e-12 - 1.02e-13*T;