|
ATLAS Offline Software
|
#include <ALFA_LocRecCorr.h>
|
| ALFA_LocRecCorr (const std::string &name, ISvcLocator *pSvcLocator) |
|
| ~ALFA_LocRecCorr () |
|
StatusCode | initialize () |
|
StatusCode | execute () |
|
StatusCode | finalize () |
|
virtual StatusCode | sysInitialize () override |
| Override sysInitialize. More...
|
|
virtual const DataObjIDColl & | extraOutputDeps () const override |
| Return the list of extra output dependencies. More...
|
|
ServiceHandle< StoreGateSvc > & | evtStore () |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | evtStore () const |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | detStore () const |
| The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
virtual StatusCode | sysStart () override |
| Handle START transition. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | inputHandles () const override |
| Return this algorithm's input handles. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | outputHandles () const override |
| Return this algorithm's output handles. More...
|
|
Gaudi::Details::PropertyBase & | declareProperty (Gaudi::Property< T > &t) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKey &hndl, const std::string &doc, const SG::VarHandleKeyType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleBase &hndl, const std::string &doc, const SG::VarHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKeyArray &hndArr, const std::string &doc, const SG::VarHandleKeyArrayType &) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc, const SG::NotHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc="none") |
| Declare a new Gaudi property. More...
|
|
void | updateVHKA (Gaudi::Details::PropertyBase &) |
|
MsgStream & | msg () const |
|
MsgStream & | msg (const MSG::Level lvl) const |
|
bool | msgLvl (const MSG::Level lvl) const |
|
Definition at line 52 of file ALFA_LocRecCorr.h.
◆ StoreGateSvc_t
◆ ALFA_LocRecCorr()
ALFA_LocRecCorr::ALFA_LocRecCorr |
( |
const std::string & |
name, |
|
|
ISvcLocator * |
pSvcLocator |
|
) |
| |
◆ ~ALFA_LocRecCorr()
ALFA_LocRecCorr::~ALFA_LocRecCorr |
( |
| ) |
|
◆ AddCOOLFolderCallback()
StatusCode ALFA_LocRecCorr::AddCOOLFolderCallback |
( |
const std::string & |
szFolder | ) |
|
|
private |
◆ COOLUpdate()
Definition at line 608 of file ALFA_LocRecCorr.cxx.
615 list<string>::const_iterator iter;
619 for(iter=
keys.begin();iter!=
keys.end();++iter)
621 if((*iter)==
"/FWD/ALFA/position_calibration")
623 ATH_MSG_DEBUG(
" IOV/COOL Notification '"<<
"/FWD/ALFA/position_calibration"<<
"'");
625 if(
detStore()->
retrieve(listAttrColl,
"/FWD/ALFA/position_calibration")==StatusCode::SUCCESS)
627 for(iterAttr=listAttrColl->
begin();iterAttr!=listAttrColl->
end();++iterAttr)
629 iChannel=iterAttr->first;
641 ATH_MSG_DEBUG(
"Geometry for the SW corrections updated successfully");
645 ATH_MSG_FATAL(
"Unable to update a geometry of the SW corrections!");
647 return StatusCode::FAILURE;
652 ATH_MSG_ERROR(
"The folder '"<<
"/FWD/ALFA/position_calibration"<<
"' not found");
654 return StatusCode::FAILURE;
◆ declareGaudiProperty() [1/4]
specialization for handling Gaudi::Property<SG::VarHandleKeyArray>
Definition at line 170 of file AthCommonDataStore.h.
175 hndl.documentation());
◆ declareGaudiProperty() [2/4]
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 of file AthCommonDataStore.h.
161 hndl.documentation());
◆ declareGaudiProperty() [3/4]
specialization for handling Gaudi::Property<SG::VarHandleBase>
Definition at line 184 of file AthCommonDataStore.h.
189 hndl.documentation());
◆ declareGaudiProperty() [4/4]
◆ declareProperty() [1/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleBase
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 245 of file AthCommonDataStore.h.
250 this->declare(hndl.
vhKey());
251 hndl.
vhKey().setOwner(
this);
253 return PBASE::declareProperty(
name,hndl,
doc);
◆ declareProperty() [2/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleKey
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 221 of file AthCommonDataStore.h.
229 return PBASE::declareProperty(
name,hndl,
doc);
◆ declareProperty() [3/6]
◆ declareProperty() [4/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This is the generic version, for types that do not derive from SG::VarHandleKey
. It just forwards to the base class version of declareProperty
.
Definition at line 333 of file AthCommonDataStore.h.
338 return PBASE::declareProperty(
name, property,
doc);
◆ declareProperty() [5/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This dispatches to either the generic declareProperty
or the one for VarHandle/Key/KeyArray.
Definition at line 352 of file AthCommonDataStore.h.
◆ declareProperty() [6/6]
◆ detStore()
◆ evtStore() [1/2]
◆ evtStore() [2/2]
◆ execute()
StatusCode ALFA_LocRecCorr::execute |
( |
| ) |
|
Definition at line 231 of file ALFA_LocRecCorr.cxx.
242 return StatusCode::SUCCESS;
249 return StatusCode::SUCCESS;
254 double fRecPosX = -9999.0, fRecPosY = -9999.0, fRecPosOD = -9999.0;
255 HepGeom::Point3D<double> PointInDetCS;
256 HepGeom::Point3D<double> PointInPotCS;
257 HepGeom::Point3D<double> PointInStatCS;
258 HepGeom::Point3D<double> PointInAtlasCS;
264 if(
sc.isFailure() || !pLocRecCorrCol)
275 for(; mcColBeg!=mcColEnd; ++mcColBeg)
277 iAlgo = (*mcColBeg)->getAlgoNum();
278 iRPot = (*mcColBeg)->getPotNum();
279 fRecPosX = (*mcColBeg)->getXposition();
280 fRecPosY = (*mcColBeg)->getYposition();
282 PointInDetCS = HepGeom::Point3D<double>(fRecPosX, fRecPosY, 10.0);
287 m_pLocRecCorrEvCollection->
push_back(
new ALFA_LocRecCorrEvent(iAlgo, iRPot, PointInAtlasCS[0], PointInAtlasCS[1], PointInAtlasCS[2], PointInPotCS[0], PointInPotCS[1], PointInStatCS[0], PointInStatCS[1], -9999.0, -9999.0));
292 if(
sc.isFailure() || !pLocRecCorrODCol)
304 for(; mcColODBeg!=mcColODEnd; ++mcColODBeg)
306 iAlgo = (*mcColODBeg)->getAlgoNum();
307 iRPot = (*mcColODBeg)->getPotNum();
308 iSide = (*mcColODBeg)->getSide();
309 fRecPosOD = (*mcColODBeg)->getYposition();
311 iSign = (iSide==0)? -1 : 1;
312 PointInDetCS = HepGeom::Point3D<double>(iSign*22, fRecPosOD, 35.5);
321 return StatusCode::SUCCESS;
◆ extraDeps_update_handler()
Add StoreName to extra input/output deps as needed.
use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given
◆ extraOutputDeps()
const DataObjIDColl & AthAlgorithm::extraOutputDeps |
( |
| ) |
const |
|
overridevirtualinherited |
Return the list of extra output dependencies.
This list is extended to include symlinks implied by inheritance relations.
Definition at line 50 of file AthAlgorithm.cxx.
57 return Algorithm::extraOutputDeps();
◆ finalize()
StatusCode ALFA_LocRecCorr::finalize |
( |
| ) |
|
◆ initialize()
StatusCode ALFA_LocRecCorr::initialize |
( |
| ) |
|
◆ inputHandles()
Return this algorithm's input handles.
We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.
◆ msg() [1/2]
◆ msg() [2/2]
◆ msgLvl()
◆ outputHandles()
Return this algorithm's output handles.
We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.
◆ Point3DInDetector()
HepGeom::Point3D< double > ALFA_LocRecCorr::Point3DInDetector |
( |
eRPotName |
eRPName | ) |
|
|
private |
◆ RecordCollection()
StatusCode ALFA_LocRecCorr::RecordCollection |
( |
| ) |
|
|
private |
◆ RecordODCollection()
StatusCode ALFA_LocRecCorr::RecordODCollection |
( |
| ) |
|
|
private |
◆ renounce()
◆ renounceArray()
◆ SetNominalGeometry()
void ALFA_LocRecCorr::SetNominalGeometry |
( |
| ) |
|
|
private |
◆ sysInitialize()
StatusCode AthAlgorithm::sysInitialize |
( |
| ) |
|
|
overridevirtualinherited |
◆ sysStart()
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
◆ UpdateGeometryAtlas()
bool ALFA_LocRecCorr::UpdateGeometryAtlas |
( |
| ) |
|
|
private |
◆ updateVHKA()
◆ UserTransform3DInDetector()
HepGeom::Transform3D ALFA_LocRecCorr::UserTransform3DInDetector |
( |
eRPotName |
eRPName | ) |
|
|
private |
Definition at line 417 of file ALFA_LocRecCorr.cxx.
420 ATH_MSG_DEBUG(
"begin ALFA_LocRecCorr::UserTransform3DInDetector()");
422 CLHEP::HepRep3x3 matRotation;
468 ATH_MSG_WARNING(
"Unknown Roman pot, detector transformation will be set to default (zero) values");
469 structUserTransform.
fAngle = 0.0;
470 structUserTransform.
vecRotation = CLHEP::Hep3Vector(0.0, 0.0, 0.0);
471 structUserTransform.
vecTranslation = CLHEP::Hep3Vector(0.0, 0.0, 0.0);
474 double fPhi = structUserTransform.
fAngle;
476 CLHEP::Hep3Vector vRotation = CLHEP::Hep3Vector(structUserTransform.
vecRotation);
477 CLHEP::Hep3Vector vTranslation = CLHEP::Hep3Vector(structUserTransform.
vecTranslation);
479 matRotation.xx_ = vRotation.x()*vRotation.x()*(1 -
cos(fPhi)) +
cos(fPhi);
480 matRotation.xy_ = vRotation.x()*vRotation.y()*(1 -
cos(fPhi)) - vRotation.z()*
sin(fPhi);
481 matRotation.xz_ = vRotation.x()*vRotation.z()*(1 -
cos(fPhi)) + vRotation.y()*
sin(fPhi);
483 matRotation.yx_ = vRotation.y()*vRotation.x()*(1 -
cos(fPhi)) + vRotation.z()*
sin(fPhi);
484 matRotation.yy_ = vRotation.y()*vRotation.y()*(1 -
cos(fPhi)) +
cos(fPhi);
485 matRotation.yz_ = vRotation.y()*vRotation.z()*(1 -
cos(fPhi)) - vRotation.x()*
sin(fPhi);
487 matRotation.zx_ = vRotation.z()*vRotation.x()*(1 -
cos(fPhi)) - vRotation.y()*
sin(fPhi);
488 matRotation.zy_ = vRotation.z()*vRotation.y()*(1 -
cos(fPhi)) + vRotation.x()*
sin(fPhi);
489 matRotation.zz_ = vRotation.z()*vRotation.z()*(1 -
cos(fPhi)) +
cos(fPhi);
491 ATH_MSG_DEBUG(
"end ALFA_LocRecCorr::UserTransform3DInDetector()");
◆ UserTransform3DInStation()
HepGeom::Transform3D ALFA_LocRecCorr::UserTransform3DInStation |
( |
eRPotName |
eRPName | ) |
|
|
private |
Definition at line 338 of file ALFA_LocRecCorr.cxx.
341 ATH_MSG_DEBUG(
"begin ALFA_LocRecCorr::UserTransform3DInStation()");
343 CLHEP::HepRep3x3 matRotation;
389 ATH_MSG_WARNING(
"Unknown Roman pot, station transformation will be set to default (zero) values");
390 structUserTransform.
fAngle = 0.0;
391 structUserTransform.
vecRotation = CLHEP::Hep3Vector(0.0, 0.0, 0.0);
392 structUserTransform.
vecTranslation = CLHEP::Hep3Vector(0.0, 0.0, 0.0);
395 double fPhi = structUserTransform.
fAngle;
397 CLHEP::Hep3Vector vRotation = CLHEP::Hep3Vector(structUserTransform.
vecRotation);
398 CLHEP::Hep3Vector vTranslation = CLHEP::Hep3Vector(structUserTransform.
vecTranslation);
400 matRotation.xx_ = vRotation.x()*vRotation.x()*(1 -
cos(fPhi)) +
cos(fPhi);
401 matRotation.xy_ = vRotation.x()*vRotation.y()*(1 -
cos(fPhi)) - vRotation.z()*
sin(fPhi);
402 matRotation.xz_ = vRotation.x()*vRotation.z()*(1 -
cos(fPhi)) + vRotation.y()*
sin(fPhi);
404 matRotation.yx_ = vRotation.y()*vRotation.x()*(1 -
cos(fPhi)) + vRotation.z()*
sin(fPhi);
405 matRotation.yy_ = vRotation.y()*vRotation.y()*(1 -
cos(fPhi)) +
cos(fPhi);
406 matRotation.yz_ = vRotation.y()*vRotation.z()*(1 -
cos(fPhi)) - vRotation.x()*
sin(fPhi);
408 matRotation.zx_ = vRotation.z()*vRotation.x()*(1 -
cos(fPhi)) - vRotation.y()*
sin(fPhi);
409 matRotation.zy_ = vRotation.z()*vRotation.y()*(1 -
cos(fPhi)) + vRotation.x()*
sin(fPhi);
410 matRotation.zz_ = vRotation.z()*vRotation.z()*(1 -
cos(fPhi)) +
cos(fPhi);
412 ATH_MSG_DEBUG(
"end ALFA_LocRecCorr::UserTransform3DInStation()");
◆ m_bCoolData
bool ALFA_LocRecCorr::m_bCoolData |
|
private |
◆ m_bIsTransformInDetector
std::vector<bool> ALFA_LocRecCorr::m_bIsTransformInDetector |
|
private |
◆ m_bIsTransformInStation
std::vector<bool> ALFA_LocRecCorr::m_bIsTransformInStation |
|
private |
◆ m_Config
◆ m_detStore
◆ m_evtStore
◆ m_extendedExtraObjects
DataObjIDColl AthAlgorithm::m_extendedExtraObjects |
|
privateinherited |
◆ m_iDataType
Int_t ALFA_LocRecCorr::m_iDataType |
|
private |
◆ m_iEvt
Int_t ALFA_LocRecCorr::m_iEvt |
|
private |
◆ m_ListExistingRPots
std::list<eRPotName> ALFA_LocRecCorr::m_ListExistingRPots |
|
private |
◆ m_pGeometryReader
◆ m_pLocRecCorrEvCollection
◆ m_pLocRecCorrODEvCollection
◆ m_pointTransformInDetectorA7L1L
std::vector<double> ALFA_LocRecCorr::m_pointTransformInDetectorA7L1L |
|
private |
◆ m_pointTransformInDetectorA7L1U
std::vector<double> ALFA_LocRecCorr::m_pointTransformInDetectorA7L1U |
|
private |
◆ m_pointTransformInDetectorA7R1L
std::vector<double> ALFA_LocRecCorr::m_pointTransformInDetectorA7R1L |
|
private |
◆ m_pointTransformInDetectorA7R1U
std::vector<double> ALFA_LocRecCorr::m_pointTransformInDetectorA7R1U |
|
private |
◆ m_pointTransformInDetectorB7L1L
std::vector<double> ALFA_LocRecCorr::m_pointTransformInDetectorB7L1L |
|
private |
◆ m_pointTransformInDetectorB7L1U
std::vector<double> ALFA_LocRecCorr::m_pointTransformInDetectorB7L1U |
|
private |
◆ m_pointTransformInDetectorB7R1L
std::vector<double> ALFA_LocRecCorr::m_pointTransformInDetectorB7R1L |
|
private |
◆ m_pointTransformInDetectorB7R1U
std::vector<double> ALFA_LocRecCorr::m_pointTransformInDetectorB7R1U |
|
private |
◆ m_rootInputFileName
std::string ALFA_LocRecCorr::m_rootInputFileName |
|
private |
◆ m_strCollectionName
std::string ALFA_LocRecCorr::m_strCollectionName |
|
private |
◆ m_strKeyGeometryForReco
std::string ALFA_LocRecCorr::m_strKeyGeometryForReco |
|
private |
◆ m_strKeyLocRecCorrEvCollection
std::string ALFA_LocRecCorr::m_strKeyLocRecCorrEvCollection |
|
private |
◆ m_strKeyLocRecCorrODEvCollection
std::string ALFA_LocRecCorr::m_strKeyLocRecCorrODEvCollection |
|
private |
◆ m_strKeyLocRecEvCollection
std::string ALFA_LocRecCorr::m_strKeyLocRecEvCollection |
|
private |
◆ m_strKeyLocRecODEvCollection
std::string ALFA_LocRecCorr::m_strKeyLocRecODEvCollection |
|
private |
◆ m_strKeyRawDataCollection
std::string ALFA_LocRecCorr::m_strKeyRawDataCollection |
|
private |
◆ m_strLocRecCollectionName
std::string ALFA_LocRecCorr::m_strLocRecCollectionName |
|
private |
◆ m_strLocRecODCollectionName
std::string ALFA_LocRecCorr::m_strLocRecODCollectionName |
|
private |
◆ m_strODCollectionName
std::string ALFA_LocRecCorr::m_strODCollectionName |
|
private |
◆ m_strTruthCollectionName
std::string ALFA_LocRecCorr::m_strTruthCollectionName |
|
private |
◆ m_TransMatrixLHC
HepGeom::Transform3D ALFA_LocRecCorr::m_TransMatrixLHC[RPOTSCNT] |
|
private |
◆ m_TransMatrixSt
HepGeom::Transform3D ALFA_LocRecCorr::m_TransMatrixSt[RPOTSCNT] |
|
private |
◆ m_varHandleArraysDeclared
◆ m_vecTransformInDetectorA7L1L
std::vector<double> ALFA_LocRecCorr::m_vecTransformInDetectorA7L1L |
|
private |
◆ m_vecTransformInDetectorA7L1U
std::vector<double> ALFA_LocRecCorr::m_vecTransformInDetectorA7L1U |
|
private |
◆ m_vecTransformInDetectorA7R1L
std::vector<double> ALFA_LocRecCorr::m_vecTransformInDetectorA7R1L |
|
private |
◆ m_vecTransformInDetectorA7R1U
std::vector<double> ALFA_LocRecCorr::m_vecTransformInDetectorA7R1U |
|
private |
◆ m_vecTransformInDetectorB7L1L
std::vector<double> ALFA_LocRecCorr::m_vecTransformInDetectorB7L1L |
|
private |
◆ m_vecTransformInDetectorB7L1U
std::vector<double> ALFA_LocRecCorr::m_vecTransformInDetectorB7L1U |
|
private |
◆ m_vecTransformInDetectorB7R1L
std::vector<double> ALFA_LocRecCorr::m_vecTransformInDetectorB7R1L |
|
private |
◆ m_vecTransformInDetectorB7R1U
std::vector<double> ALFA_LocRecCorr::m_vecTransformInDetectorB7R1U |
|
private |
◆ m_vecTransformInStationA7L1L
std::vector<double> ALFA_LocRecCorr::m_vecTransformInStationA7L1L |
|
private |
◆ m_vecTransformInStationA7L1U
std::vector<double> ALFA_LocRecCorr::m_vecTransformInStationA7L1U |
|
private |
◆ m_vecTransformInStationA7R1L
std::vector<double> ALFA_LocRecCorr::m_vecTransformInStationA7R1L |
|
private |
◆ m_vecTransformInStationA7R1U
std::vector<double> ALFA_LocRecCorr::m_vecTransformInStationA7R1U |
|
private |
◆ m_vecTransformInStationB7L1L
std::vector<double> ALFA_LocRecCorr::m_vecTransformInStationB7L1L |
|
private |
◆ m_vecTransformInStationB7L1U
std::vector<double> ALFA_LocRecCorr::m_vecTransformInStationB7L1U |
|
private |
◆ m_vecTransformInStationB7R1L
std::vector<double> ALFA_LocRecCorr::m_vecTransformInStationB7R1L |
|
private |
◆ m_vecTransformInStationB7R1U
std::vector<double> ALFA_LocRecCorr::m_vecTransformInStationB7R1U |
|
private |
◆ m_vhka
The documentation for this class was generated from the following files:
def retrieve(aClass, aKey=None)
StatusCode RecordCollection()
std::vector< double > m_pointTransformInDetectorB7R1L
std::vector< double > m_vecTransformInDetectorB7R1U
const_iterator end() const
StatusCode RecordODCollection()
Const iterator class for DataVector/DataList.
std::string m_strKeyLocRecCorrEvCollection
ALFA_LocRecCorrEvCollection * m_pLocRecCorrEvCollection
StatusCode COOLUpdate(IOVSVC_CALLBACK_ARGS_P(, keys))
HepGeom::Transform3D UserTransform3DInDetector(eRPotName eRPName)
std::vector< double > m_vecTransformInStationB7L1L
std::string m_strKeyGeometryForReco
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
std::string m_strKeyLocRecODEvCollection
HepGeom::Transform3D UserTransform3DInStation(eRPotName eRPName)
std::vector< double > m_pointTransformInDetectorA7R1U
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
std::vector< double > m_vecTransformInStationB7R1U
const_iterator begin() const
Access to Chan/AttributeList pairs via iterators.
std::vector< double > m_pointTransformInDetectorA7L1U
std::vector< double > m_vecTransformInDetectorB7R1L
HepGeom::Point3D< double > GetDetPointInRPot(eRPotName eRPName, const HepGeom::Point3D< double > &PointInDetCS)
This class is a collection of AttributeLists where each one is associated with a channel number....
ChargedTracksWeightFilter::Spline::Point Point
std::string strODConnString
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
std::string strMDConnString
virtual void setOwner(IDataHandleHolder *o)=0
HepGeom::Transform3D UserTransformOfDetInRPot
StatusCode AddCOOLFolderCallback(const std::string &szFolder)
std::vector< double > m_vecTransformInDetectorA7R1L
std::vector< double > m_vecTransformInStationA7R1U
std::vector< double > m_vecTransformInStationA7L1L
std::vector< bool > m_bIsTransformInDetector
struct CFGRPPOSPARAMS::@51 swcorr
ServiceHandle< StoreGateSvc > & evtStore()
The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
GEOMETRYCONFIGURATION m_Config
bool bIsEnabledUserTranform
std::string m_strLocRecCollectionName
std::vector< double > m_vecTransformInStationB7L1U
virtual StatusCode sysInitialize() override
Override sysInitialize.
std::vector< double > m_vecTransformInStationA7R1L
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
ALFA_GeometryReader * m_pGeometryReader
::StatusCode StatusCode
StatusCode definition for legacy code.
Eigen::Affine3d Transform3D
bool Initialize(const PGEOMETRYCONFIGURATION pConfig, eFiberCoordSystem eFCoordSystem)
bool UpdateGeometryAtlas()
#define CHECK(...)
Evaluate an expression and check for errors.
CFGRPPOSPARAMS CfgRPosParams[RPOTSCNT]
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
std::vector< double > m_pointTransformInDetectorB7R1U
std::vector< double > m_pointTransformInDetectorB7L1L
virtual void renounce()=0
struct CFGRPPOSPARAMS::@52 usercorr
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
HepGeom::Transform3D m_TransMatrixSt[RPOTSCNT]
HepGeom::Point3D< double > GetDetPointInAtlas(eRPotName eRPName, const HepGeom::Point3D< double > &PointInDetCS)
std::vector< double > m_vecTransformInDetectorA7R1U
Linear spline representation of a function used to calculate weights.
std::vector< double > m_vecTransformInDetectorB7L1U
value_type push_back(value_type pElem)
Add an element to the end of the collection.
std::string m_strKeyLocRecCorrODEvCollection
void SetNominalGeometry()
std::vector< double > m_vecTransformInDetectorA7L1L
std::vector< double > m_pointTransformInDetectorA7L1L
HepGeom::Point3D< double > UserOriginOfDetTransInRPot
std::list< eRPotName > m_ListExistingRPots
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
DataObjIDColl m_extendedExtraObjects
std::vector< double > m_vecTransformInDetectorA7L1U
void GetListOfExistingRPotIDs(std::list< eRPotName > *pListRPotName)
#define ATH_MSG_WARNING(x)
ChanAttrListMap::const_iterator const_iterator
ALFA_LocRecCorrODEvCollection * m_pLocRecCorrODEvCollection
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
std::vector< double > m_pointTransformInDetectorB7L1U
std::string m_strKeyLocRecEvCollection
std::vector< double > m_pointTransformInDetectorA7R1L
HepGeom::Transform3D UserTransformOfRPInStation
AthAlgorithm()
Default constructor:
std::vector< bool > m_bIsTransformInStation
std::string strRPMetrologyConnString
std::string m_strLocRecODCollectionName
std::vector< double > m_vecTransformInStationA7L1U
HepGeom::Point3D< double > Point3DInDetector(eRPotName eRPName)
std::vector< double > m_vecTransformInStationB7R1L
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
std::vector< double > m_vecTransformInDetectorB7L1L
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.