ATLAS Offline Software
Loading...
Searching...
No Matches
MdtCalibDbAlg.cxx File Reference
#include "MdtCalibDbAlg.h"
#include "AthenaKernel/IOVInfiniteRange.h"
#include "MdtCalibData/MdtFullCalibData.h"
#include "MdtCalibData/CalibParamSorter.h"
#include "MdtCalibData/RtRelationLookUp.h"
#include "MdtCalibData/RtResolutionLookUp.h"
#include "MdtCalibData/RtResolutionChebyshev.h"
#include "MdtCalibData/RadiusResolutionChebyshev.h"
#include "MdtCalibData/RtChebyshev.h"
#include "MdtCalibData/TrChebyshev.h"
#include "MdtCalibData/RtLegendre.h"
#include "MdtCalibData/TrLegendre.h"
#include "CxxUtils/StringUtils.h"
#include "GaudiKernel/PhysicalConstants.h"
#include "CoralBase/Attribute.h"
#include "CoralBase/AttributeListSpecification.h"
#include "CoralBase/Blob.h"
#include "CoralUtilities/blobaccess.h"
#include <unordered_map>
#include <fstream>
#include "TFile.h"
#include "TTree.h"

Go to the source code of this file.

Namespaces

namespace  MuonCalibR4

Macros

#define SET_BRANCHADDRESS(tree, branchName)

Macro Definition Documentation

◆ SET_BRANCHADDRESS

#define SET_BRANCHADDRESS ( tree,
branchName )
Value:
{ \
if (!tree.GetBranch(#branchName)) { \
ATH_MSG_FATAL("The branch "<<#branchName<<" does not exist."); \
return StatusCode::FAILURE; \
} \
if (tree.SetBranchAddress(#branchName,&branchName) != 0){ \
ATH_MSG_FATAL("Failed to connect branch "<<#branchName<<"."); \
return StatusCode::FAILURE; \
} \
}
TChain * tree

Definition at line 41 of file MuonPhaseII/MuonConditions/MuonCondAlgR4/src/MdtCalibDbAlg.cxx.

41#define SET_BRANCHADDRESS(tree, branchName) \
42 { \
43 if (!tree.GetBranch(#branchName)) { \
44 ATH_MSG_FATAL("The branch "<<#branchName<<" does not exist."); \
45 return StatusCode::FAILURE; \
46 } \
47 if (tree.SetBranchAddress(#branchName,&branchName) != 0){ \
48 ATH_MSG_FATAL("Failed to connect branch "<<#branchName<<"."); \
49 return StatusCode::FAILURE; \
50 } \
51 }