|
CbmRoot
|
A QA-task class, which provides assurance of MuCh hits and geometry. More...
#include <CbmCaInputQaBase.h>
Classes | |
| struct | Config |
| Specific configuration for the CA input QA task. More... | |
| struct | ResidualFitResult |
| Stores fit residuals result. More... | |
Public Types | |
| enum class | EStoringMode { kSAMEDIR , kSUBDIR } |
| using | ObjList_t = std::vector<std::pair<TObject*, TString>> |
Public Member Functions | |
| CbmCaInputQaBase (const char *name, int verbose, bool isMCUsed) | |
| Constructor from parameters. | |
| virtual | ~CbmCaInputQaBase ()=default |
| Destructor. | |
| bool | CompareQaObjects () |
| Process ROOT objects comparison. | |
| void | DisableEventMode () |
| Disables event-by-event execution. | |
| const std::map< std::string, CheckFlags > & | GetCheckList () const |
| Gets check-list. | |
| const TString & | GetDefaultTag () const |
| Gets default tag. | |
| const std::string & | GetSetupName () const |
| Gets name of the setup. | |
| const TString & | GetVersionTag () const |
| Gets version tag. | |
| bool | IsMCUsed () const |
| Returns flag, whether MC information is used or not in the task. | |
| void | ReadCheckListFromConfig () |
| Reads check-list from the configuration file. | |
| void | SetCheckFile (const std::shared_ptr< TFile > &pCheckFile) |
| Sets check-file. | |
| void | SetCompareOutput (const std::shared_ptr< TFile > &pCompareOutput) |
| Sets compare output file. | |
| void | SetVersionTag (const TString &tag) |
| Sets version tag. | |
| void | SetDefaultTag (const TString &tag) |
| Sets default tag. | |
| void | SetRecoMode (ECbmRecoMode recoMode) |
| Sets data processing (reconstruction) mode. | |
| void | SetSetupName (const char *setup) |
| Sets name of the setup. | |
| const char * | GetConfigName () const |
| Gets config name. | |
| template<typename T, typename... Args> | |
| T * | MakeQaObject (TString sName, TString sTitle, Args... args) |
| void | MakeQaDirectory (TString sName) |
| void | SetConfigName (const char *path) |
| Creates a ROOT object. | |
| void | SetRootFolderName (const TString &path) |
| Sets a common root path to the objects in the output file. | |
| void | SetStoringMode (EStoringMode mode) |
| Set storing mode. | |
Protected Types | |
| enum class | EMonitorKey { kEvent , kHit , kHitAccepted , kMcPoint , kMcPointWrongStation , END } |
| QA monitor counters. More... | |
| using | Point_t = cbm::ca::PointTypes_t::at<DetID> |
| Point type for a given detector ID. | |
| using | Hit_t = cbm::ca::HitTypes_t::at<DetID> |
| Hit type for a given detector ID. | |
Protected Member Functions | |
| void | Check () override |
| Method to check, if the QA results are acceptable. | |
| void | CreateSummary () override |
| Creates summary cavases, tables etc. | |
| virtual void | FillHistogramsPerHit () |
| Fills histograms per hit. | |
| virtual void | FillHistogramsPerPoint () |
| Fills histograms per MC point. | |
| void | DeInit () override |
| De-initializes histograms. | |
| virtual void | DefineParameters ()=0 |
| Defines parameter for a derived class. | |
| void | ExecQa () override |
| Fills histograms per event or time-slice. | |
| InitStatus | InitQa () override |
| Initializes QA task. | |
| std::pair< std::string, bool > | CheckRangePull (TH1 *h) const |
| Checks ranges for mean and standard deviation. | |
| const cbm::ca::HitQaData & | GetHitQaData () const |
| Returns a pointer to current hit QA data object. | |
| bool | IsTrackSelected (const CbmMCTrack *track, const Point_t *point) const |
| checks if the track at mc point passes the track selection cuts | |
| bool | IsHitAcceptable (const CbmPixelHit *pHit) const |
| Checks, if the hit is acceptable (has reasonable parameters) | |
| void | Exec (Option_t *) override final |
| FairTask: Defines action of the task in the event/TS. | |
| void | Finish () override final |
| FairTask: Defines action of the task in the end of run. | |
| InitStatus | Init () override final |
| FairTask: Task initialization in the beginning of the run. | |
| InitStatus | ReInit () override final |
| FairTask: Task reinitialization. | |
| int | GetEventNumber () const |
| Get current event number. | |
| template<typename T> | |
| bool | CheckRange (std::string_view name, T var, T lo, T hi) const |
| Checks range of variable. | |
| template<typename T> | |
| bool | CheckRange (std::string_view name, T var, T varErr, T lo, T hi) const |
| Checks range of variable. | |
| bool | CheckRange (TH1 *h, double meanMax, double rmsMin, double rmsMax) |
| Checks ranges for mean and standard deviation. | |
| void | PutSetupNameOnPad (double xMin, double yMin, double xMax, double yMax) |
| Puts setup title on the canvas. | |
| CbmEvent * | GetCurrentEvent () |
| Gets pointer to current event. | |
| void | StoreCheckResult (const std::string &tag, bool result, const std::string &msg="") |
| Stores check flag to the check-list. | |
| template<typename T> | |
| void | CheckProperty (T &&property, const char *name) const |
| Function to check, if a property is defined. | |
| template<class Config> | |
| std::optional< Config > | ReadSpecificConfig () const |
| Reads the specific configuration structure from the YAML node. | |
| virtual void | SetTH1Properties (TH1 *pHist) const |
| Applies properties on the histogram created with the MakeQaObject function. | |
| virtual void | SetTH2Properties (TH2 *pHist) const |
| Applies properties on the histogram created with the MakeQaObject function. | |
| virtual void | SetTProfile2DProperties (TProfile2D *pHist) const |
| Applies properties on the profile 2D created with the MakeQaObject function. | |
| virtual void | SetCanvasProperties (TCanvas *pCanv) const |
| Applies properties on the canvas created with the MakeQaObject funciton. | |
| void | WriteToFile (TFile *pOutFile) const |
| Writes objects into file. | |
Protected Attributes | |
| cbm::algo::ca::Monitor< EMonitorKey > | fMonitor {} |
| Monitor for the input QA. | |
| Config | fConfig |
| Task specific configuration parameters. | |
| const cbm::algo::RecoSetupUnit_t< ToCbmModuleId(DetID)> * | fpDetInterface = nullptr |
| Instance of detector interface. | |
| CbmTimeSlice * | fpTimeSlice = nullptr |
| Pointer to current time-slice. | |
| TClonesArray * | fpHits = nullptr |
| Array of hits. | |
| TClonesArray * | fpClusters = nullptr |
| Array of hit clusters. | |
| CbmMCDataManager * | fpMCDataManager = nullptr |
| MC data manager. | |
| CbmMCEventList * | fpMCEventList = nullptr |
| MC event list. | |
| CbmMCDataArray * | fpMCTracks = nullptr |
| Array of MC tracks. | |
| CbmMCDataArray * | fpMCPoints = nullptr |
| Array of MC points. | |
| TClonesArray * | fpHitMatches = nullptr |
| Array of hit matches. | |
| int | fNbins = 200 |
| General number of bins. | |
| int | fNbinsZ = 800 |
| Number of bins for z axis in overall views. | |
| std::array< double, 2 > | fRHitDx = {kNAN, kNAN} |
| Range for hit x coordinate error [cm]. | |
| std::array< double, 2 > | fRHitDy = {kNAN, kNAN} |
| Range for hit y coordinate error [cm]. | |
| std::array< double, 2 > | fRHitDu = {kNAN, kNAN} |
| Range for hit u coordinate error [cm]. | |
| std::array< double, 2 > | fRHitDv = {kNAN, kNAN} |
| Range for hit v coordinate error [cm]. | |
| std::array< double, 2 > | fRHitDt = {kNAN, kNAN} |
| Range for hit time error [ns]. | |
| std::array< double, 2 > | fRResX = {kNAN, kNAN} |
| Range for residual of x coordinate [cm]. | |
| std::array< double, 2 > | fRResY = {kNAN, kNAN} |
| Range for residual of y coordinate [cm]. | |
| std::array< double, 2 > | fRResU = {kNAN, kNAN} |
| Range for residual of u coordinate [cm]. | |
| std::array< double, 2 > | fRResV = {kNAN, kNAN} |
| Range for residual of v coordinate [cm]. | |
| std::array< double, 2 > | fRResT = {kNAN, kNAN} |
| Range for residual of time [ns]. | |
| std::array< double, 2 > | fRangeDzHitPoint = {-0.05, 0.05} |
| Range for z-pos difference of the hit and point [cm]. | |
| std::vector< double > | frXmin |
| Range for hit x coordinate [cm]. | |
| std::vector< double > | frXmax |
| Range for hit x coordinate [cm]. | |
| std::vector< double > | frYmin |
| Range for hit y coordinate [cm]. | |
| std::vector< double > | frYmax |
| Range for hit y coordinate [cm]. | |
| std::vector< double > | frZmin |
| Range for hit z coordinate [cm]. | |
| std::vector< double > | frZmax |
| Range for hit z coordinate [cm]. | |
| std::vector< TH2F * > | fvph_hit_xy |
| hit y vs x in different stations | |
| std::vector< TH2F * > | fvph_hit_zx |
| hit x vs z in different stations | |
| std::vector< TH2F * > | fvph_hit_zy |
| hit y vs z in different stations | |
| std::vector< TH1F * > | fvph_hit_station_delta_z |
| Difference between station and hit z positions [cm]. | |
| std::vector< TH1F * > | fvph_hit_dx |
| std::vector< TH1F * > | fvph_hit_dy |
| std::vector< TH1F * > | fvph_hit_du |
| std::vector< TH1F * > | fvph_hit_dv |
| std::vector< TH1F * > | fvph_hit_kuv |
| std::vector< TH1F * > | fvph_hit_dt |
| std::vector< TH1F * > | fvph_n_points_per_hit |
| number of points per one hit in different stations | |
| std::vector< TH2F * > | fvph_point_xy |
| point y vs x in different stations | |
| std::vector< TH2F * > | fvph_point_zx |
| point x vs z in different stations | |
| std::vector< TH2F * > | fvph_point_zy |
| point y vs z in different stations | |
| std::vector< TH1F * > | fvph_point_hit_delta_z |
| difference between z of hit and MC point in different stations | |
| std::vector< TH1F * > | fvph_res_x |
| residual for x coordinate in different stations | |
| std::vector< TH1F * > | fvph_res_y |
| residual for y coordinate in different stations | |
| std::vector< TH1F * > | fvph_res_u |
| residual for u coordinate in different stations | |
| std::vector< TH1F * > | fvph_res_v |
| residual for v coordinate in different stations | |
| std::vector< TH1F * > | fvph_res_t |
| residual for t coordinate in different stations | |
| std::vector< TH2F * > | fvph_res_x_vs_x |
| residual for x coordinate in different stations | |
| std::vector< TH2F * > | fvph_res_y_vs_y |
| residual for y coordinate in different stations | |
| std::vector< TH2F * > | fvph_res_u_vs_u |
| residual for u coordinate in different stations | |
| std::vector< TH2F * > | fvph_res_v_vs_v |
| residual for v coordinate in different stations | |
| std::vector< TH2F * > | fvph_res_t_vs_t |
| residual for t coordinate in different stations | |
| std::vector< TH1F * > | fvph_pull_x |
| pull for x coordinate in different stations | |
| std::vector< TH1F * > | fvph_pull_y |
| pull for y coordinate in different stations | |
| std::vector< TH1F * > | fvph_pull_u |
| pull for u coordinate in different stations | |
| std::vector< TH1F * > | fvph_pull_v |
| pull for v coordinate in different stations | |
| std::vector< TH1F * > | fvph_pull_t |
| pull for t coordinate in different stations | |
| std::vector< TH2F * > | fvph_pull_x_vs_x |
| pull for x coordinate in different stations | |
| std::vector< TH2F * > | fvph_pull_y_vs_y |
| pull for y coordinate in different stations | |
| std::vector< TH2F * > | fvph_pull_u_vs_u |
| pull for u coordinate in different stations | |
| std::vector< TH2F * > | fvph_pull_v_vs_v |
| pull for v coordinate in different stations | |
| std::vector< TH2F * > | fvph_pull_t_vs_t |
| pull for t coordinate in different stations | |
| std::vector< TProfile2D * > | fvpe_reco_eff_vs_xy |
| Efficiency of hit reconstruction vs. x and y coordinates of MC. | |
| std::vector< TH1F * > | fvph_reco_eff |
| Distribution of hit reconstruction efficiency in bins of fvpe_reco_eff_vs_xy. | |
| CbmDigiManager * | fDigiManager = nullptr |
| Interface to digi branches. | |
| cbm::ca::HitQaData | fHitQaData {} |
| Current hit QA data object. | |
| TString | fsRootFolderName = "" |
| Name of root folder. | |
| TString | fsConfigName = "" |
| Name of configuration file. | |
| TString | fsPrefix = "" |
| Unique prefix for all writeable root. | |
| EStoringMode | fStoringMode = EStoringMode::kSUBDIR |
| Objects storing mode. | |
| std::shared_ptr< ObjList_t > | fpvObjList = nullptr |
| List of registered ROOT objects. | |
| YAML::Node | fConfigNode {} |
| Configuration node. | |
Static Protected Attributes | |
| static constexpr auto | DetName = cbm::algo::RecoSetupUnit_t<ToCbmModuleId(DetID)>::GetDetectorName() |
| static constexpr double | kNAN = std::numeric_limits<double>::signaling_NaN() |
| static constexpr int | kNbinsPull = 200 |
| static constexpr double | kRPull [2] = {-10., 10.} |
| Range for pull histograms coordinate. | |
Private Member Functions | |
| void | DeInitBase () |
| De-initializes this task. | |
| template<class Obj> | |
| bool | CompareTwoObjects (const TObject *pObjL, const TObject *pObjR, const TString &objName, const ObjectComparisonConfig &cfg) |
| Process object comparison. | |
| ClassDefOverride (CbmQaTask, 0) | |
| template<typename T, typename... Args> | |
| T * | ConstructAndRegisterQaObject (TString name, Args... args) |
| Creates and registers a ROOT object. | |
Private Attributes | |
| bool | fbUseMC = false |
| Flag, if MC is used. | |
| ECbmRecoMode | fRecoMode = ECbmRecoMode::Timeslice |
| Reconstruction mode. | |
| std::map< std::string, CheckFlags > | fmCheckList |
| A QA check-list map. | |
| TClonesArray * | fpBrEvents = nullptr |
| Pointer to CbmEvent branch. | |
| CbmEvent * | fpCurrentEvent = nullptr |
| Pointer to the current event. | |
| std::string | fsSetupName = "" |
| Name of the setup (to draw on the canvases) | |
| TParameter< int > | fNofEvents {"nEvents", 0} |
| Number of processed events. | |
| TString | fsVersionTag = "" |
| Version tag (git SHA etc.) | |
| TString | fsDefaultTag = "" |
| Default tag (git SHA etc.) | |
| std::shared_ptr< TFile > | fpBenchmarkInput = nullptr |
| A file with default ROOT objects used for the cross-check. | |
| std::shared_ptr< TFile > | fpBenchmarkOutput = nullptr |
| An output file for histograms cross-check. | |
A QA-task class, which provides assurance of MuCh hits and geometry.
| DetID | Detector ID |
Definition at line 55 of file CbmCaInputQaBase.h.
|
protected |
Hit type for a given detector ID.
Definition at line 58 of file CbmCaInputQaBase.h.
|
inherited |
|
protected |
Point type for a given detector ID.
Definition at line 57 of file CbmCaInputQaBase.h.
|
strongprotected |
QA monitor counters.
| Enumerator | |
|---|---|
| kEvent | |
| kHit | |
| kHitAccepted | |
| kMcPoint | |
| kMcPointWrongStation | |
| END | |
Definition at line 161 of file CbmCaInputQaBase.h.
|
stronginherited |
| CbmCaInputQaBase< DetID >::CbmCaInputQaBase | ( | const char * | name, |
| int | verbose, | ||
| bool | isMCUsed ) |
Constructor from parameters.
| name | Name of the task |
| verbose | Verbose level |
| isMCUsed | Flag, whether MC information is available for this task |
Definition at line 70 of file CbmCaInputQaBase.cxx.
References CbmQaTask::CbmQaTask(), CbmQaIO::kSUBDIR, and CbmQaIO::SetStoringMode().
|
virtualdefault |
Destructor.
|
overrideprotectedvirtual |
Method to check, if the QA results are acceptable.
Implements CbmQaTask.
Reimplemented in CbmCaInputQaMuch, CbmCaInputQaMvd, CbmCaInputQaSts, CbmCaInputQaTof, and CbmCaInputQaTrd.
Definition at line 79 of file CbmCaInputQaBase.cxx.
References fpDetInterface, fvpe_reco_eff_vs_xy, fvph_reco_eff, and CbmQaTask::IsMCUsed().
Referenced by CbmCaInputQaMuch::Check(), CbmCaInputQaMvd::Check(), CbmCaInputQaSts::Check(), CbmCaInputQaTof::Check(), CbmCaInputQaTrd::Check(), and CheckRangePull().
|
protectedinherited |
Function to check, if a property is defined.
Definition at line 177 of file CbmQaIO.h.
Referenced by MakeQaObject().
|
protectedinherited |
Checks range of variable.
| name | Name of the variable |
| var | Variable to check |
| lo | Lower limit of the variable |
| hi | Upper limit of the variable |
Definition at line 275 of file CbmQaTask.h.
References CheckRange().
Referenced by CheckRange(), and CheckRange().
|
protectedinherited |
Checks range of variable.
| name | Name of the variable |
| var | Variable to check |
| varErr | Standard Error of the variable |
| lo | Lower limit of the variable |
| hi | Upper limit of the variable |
Definition at line 283 of file CbmQaTask.h.
|
protectedinherited |
Checks ranges for mean and standard deviation.
Definition at line 141 of file CbmQaTask.cxx.
References CheckRange().
|
protected |
|
privateinherited |
References CbmQaTask().
|
inherited |
Process ROOT objects comparison.
Definition at line 162 of file CbmQaTask.cxx.
References CbmQaIO::fConfigNode.
|
privateinherited |
Process object comparison.
| Obj | Class of the ROOT object |
| pObjL | First object (this) |
| pObjR | Second object (default) |
| objName | Name of the object (contains full path to the object) |
| cfg | Comparison configuration entry |
Definition at line 306 of file CbmQaTask.h.
References CbmQaTask::ObjectComparisonConfig::fCanvOpt, CbmQaTask::ObjectComparisonConfig::fChi2NdfMax, fpBenchmarkOutput, CbmQaTask::ObjectComparisonConfig::fPoint, CbmQaTask::ObjectComparisonConfig::fRatio, CbmQaTask::ObjectComparisonConfig::fRatioMax, CbmQaTask::ObjectComparisonConfig::fRatioMin, fsDefaultTag, CbmQaTask::ObjectComparisonConfig::fStat, CbmQaTask::ObjectComparisonConfig::fStatOpt, and fsVersionTag.
|
privateinherited |
Creates and registers a ROOT object.
| name | A name of the ROOT object, which can contain a sub-directory |
| args | Other arguments, passed to the ROOT object constructor |
Definition at line 197 of file CbmQaIO.h.
References fpvObjList, fsRootFolderName, fStoringMode, kSUBDIR, SetCanvasProperties(), SetTH1Properties(), SetTH2Properties(), and SetTProfile2DProperties().
Referenced by MakeQaObject().
|
overrideprotectedvirtual |
Creates summary cavases, tables etc.
TODO: Move this fuction somewhere on top of the class
Reimplemented from CbmQaTask.
Reimplemented in CbmCaInputQaMuch, CbmCaInputQaMvd, CbmCaInputQaSts, CbmCaInputQaTof, and CbmCaInputQaTrd.
Definition at line 1225 of file CbmCaInputQaBase.cxx.
References fpDetInterface, fvpe_reco_eff_vs_xy, fvph_hit_dt, fvph_hit_du, fvph_hit_dv, fvph_hit_dx, fvph_hit_dy, fvph_hit_kuv, fvph_hit_station_delta_z, fvph_hit_xy, fvph_hit_zx, fvph_hit_zy, fvph_n_points_per_hit, fvph_point_hit_delta_z, fvph_point_xy, fvph_point_zx, fvph_point_zy, fvph_pull_t, fvph_pull_u, fvph_pull_v, fvph_pull_x, fvph_pull_y, fvph_reco_eff, fvph_res_t, fvph_res_u, fvph_res_v, fvph_res_x, fvph_res_y, CbmQaTask::IsMCUsed(), and CbmQaIO::MakeQaObject().
Referenced by CbmCaInputQaMuch::CreateSummary(), CbmCaInputQaMvd::CreateSummary(), CbmCaInputQaSts::CreateSummary(), CbmCaInputQaTof::CreateSummary(), and CbmCaInputQaTrd::CreateSummary().
|
protectedpure virtual |
Defines parameter for a derived class.
Implemented in CbmCaInputQaMuch, CbmCaInputQaMvd, CbmCaInputQaSts, CbmCaInputQaTof, and CbmCaInputQaTrd.
|
overrideprotectedvirtual |
De-initializes histograms.
Reimplemented from CbmQaTask.
Reimplemented in CbmCaInputQaMuch, CbmCaInputQaMvd, CbmCaInputQaSts, CbmCaInputQaTof, and CbmCaInputQaTrd.
Definition at line 335 of file CbmCaInputQaBase.cxx.
References fvpe_reco_eff_vs_xy, fvph_hit_dt, fvph_hit_du, fvph_hit_dv, fvph_hit_dx, fvph_hit_dy, fvph_hit_kuv, fvph_hit_station_delta_z, fvph_hit_xy, fvph_hit_zx, fvph_hit_zy, fvph_n_points_per_hit, fvph_point_hit_delta_z, fvph_point_xy, fvph_point_zx, fvph_point_zy, fvph_pull_t, fvph_pull_t_vs_t, fvph_pull_u, fvph_pull_u_vs_u, fvph_pull_v, fvph_pull_v_vs_v, fvph_pull_x, fvph_pull_x_vs_x, fvph_pull_y, fvph_pull_y_vs_y, fvph_reco_eff, fvph_res_t, fvph_res_t_vs_t, fvph_res_u, fvph_res_u_vs_u, fvph_res_v, fvph_res_v_vs_v, fvph_res_x, fvph_res_x_vs_x, fvph_res_y, and fvph_res_y_vs_y.
Referenced by CbmCaInputQaMuch::DeInit(), CbmCaInputQaMvd::DeInit(), CbmCaInputQaSts::DeInit(), CbmCaInputQaTof::DeInit(), and CbmCaInputQaTrd::DeInit().
|
privateinherited |
De-initializes this task.
Definition at line 129 of file CbmQaTask.cxx.
References DeInit().
Referenced by Init().
|
inherited |
Disables event-by-event execution.
By default, if the branch
|
finaloverrideprotectedinherited |
FairTask: Defines action of the task in the event/TS.
Definition at line 44 of file CbmQaTask.cxx.
References ExecQa(), fNofEvents, fpBrEvents, and fpCurrentEvent.
|
overrideprotectedvirtual |
Fills histograms per event or time-slice.
Reimplemented from CbmQaTask.
Reimplemented in CbmCaInputQaMuch, CbmCaInputQaMvd, CbmCaInputQaSts, CbmCaInputQaTof, and CbmCaInputQaTrd.
Definition at line 390 of file CbmCaInputQaBase.cxx.
References fHitQaData, FillHistogramsPerHit(), fMonitor, fpDetInterface, fpHitMatches, fpHits, fpMCEventList, fpMCPoints, fpMCTracks, fvpe_reco_eff_vs_xy, fvph_hit_dt, fvph_hit_kuv, fvph_hit_station_delta_z, fvph_hit_xy, fvph_hit_zx, fvph_hit_zy, fvph_n_points_per_hit, fvph_point_hit_delta_z, fvph_point_xy, fvph_point_zx, fvph_point_zy, fvph_pull_t, fvph_pull_t_vs_t, fvph_pull_u, fvph_pull_u_vs_u, fvph_pull_v, fvph_pull_v_vs_v, fvph_pull_x, fvph_pull_x_vs_x, fvph_pull_y, fvph_pull_y_vs_y, fvph_res_t, fvph_res_t_vs_t, fvph_res_u, fvph_res_u_vs_u, fvph_res_v, fvph_res_v_vs_v, fvph_res_x, fvph_res_x_vs_x, fvph_res_y, fvph_res_y_vs_y, CbmTofAddress::GetSmType(), CbmQaTask::IsMCUsed(), IsTrackSelected(), kHit, kHitAccepted, kMcPoint, kMcPointWrongStation, kNAN, cbm::algo::ca::kTof, CbmLink::SetIndex(), cbm::algo::ca::constants::phys::SpeedOfLight, and sqrt().
Referenced by CbmCaInputQaMuch::ExecQa(), CbmCaInputQaMvd::ExecQa(), CbmCaInputQaSts::ExecQa(), CbmCaInputQaTof::ExecQa(), and CbmCaInputQaTrd::ExecQa().
|
inlineprotectedvirtual |
Fills histograms per hit.
Reimplemented in CbmCaInputQaMuch, CbmCaInputQaMvd, CbmCaInputQaSts, CbmCaInputQaTof, and CbmCaInputQaTrd.
Definition at line 117 of file CbmCaInputQaBase.h.
Referenced by ExecQa().
|
inlineprotectedvirtual |
Fills histograms per MC point.
Reimplemented in CbmCaInputQaMuch, CbmCaInputQaMvd, CbmCaInputQaSts, and CbmCaInputQaTof.
Definition at line 120 of file CbmCaInputQaBase.h.
|
finaloverrideprotectedinherited |
FairTask: Defines action of the task in the end of run.
Definition at line 64 of file CbmQaTask.cxx.
References CreateSummary(), fNofEvents, and CbmQaIO::WriteToFile().
|
inlineinherited |
|
inlineinherited |
|
inlineprotectedinherited |
Gets pointer to current event.
Definition at line 216 of file CbmQaTask.h.
References fpCurrentEvent.
Referenced by cbm::ca::OutputQa::ExecQa(), and CbmRichRingRecoQa::ExecQa().
|
inlineinherited |
|
inlineprotectedinherited |
Get current event number.
Definition at line 183 of file CbmQaTask.h.
References fNofEvents.
Referenced by cbm::ca::OutputQa::Check(), and cbm::ca::OutputQa::DrawEvent().
|
inlineprotected |
Returns a pointer to current hit QA data object.
The hit QA data object is filled on each step for hit reconstruction and available inside functions FillHit() and FillMCPoint()
Definition at line 142 of file CbmCaInputQaBase.h.
References fHitQaData.
|
inlineinherited |
|
inlineinherited |
|
finaloverrideprotectedinherited |
FairTask: Task initialization in the beginning of the run.
Definition at line 88 of file CbmQaTask.cxx.
References DeInitBase(), EventByEvent, fpBrEvents, fRecoMode, and InitQa().
Referenced by ReInit().
|
overrideprotectedvirtual |
Initializes QA task.
Reimplemented from CbmQaTask.
Reimplemented in CbmCaInputQaMuch, CbmCaInputQaMvd, CbmCaInputQaSts, CbmCaInputQaTof, and CbmCaInputQaTrd.
Definition at line 827 of file CbmCaInputQaBase.cxx.
References DetName, fConfig, fDigiManager, fMonitor, fNbins, fNbinsZ, fpDetInterface, fpHitMatches, fpHits, fpMCDataManager, fpMCEventList, fpMCPoints, fpMCTracks, fRangeDzHitPoint, fRHitDt, fRHitDu, fRHitDv, fRHitDx, fRHitDy, fRResT, fRResU, fRResV, fRResX, fRResY, frXmax, frXmin, frYmax, frYmin, frZmax, frZmin, fvpe_reco_eff_vs_xy, fvph_hit_dt, fvph_hit_du, fvph_hit_dv, fvph_hit_dx, fvph_hit_dy, fvph_hit_kuv, fvph_hit_station_delta_z, fvph_hit_xy, fvph_hit_zx, fvph_hit_zy, fvph_n_points_per_hit, fvph_point_hit_delta_z, fvph_point_xy, fvph_point_zx, fvph_point_zy, fvph_pull_t, fvph_pull_t_vs_t, fvph_pull_u, fvph_pull_u_vs_u, fvph_pull_v, fvph_pull_v_vs_v, fvph_pull_x, fvph_pull_x_vs_x, fvph_pull_y, fvph_pull_y_vs_y, fvph_reco_eff, fvph_res_t, fvph_res_t_vs_t, fvph_res_u, fvph_res_u_vs_u, fvph_res_v, fvph_res_v_vs_v, fvph_res_x, fvph_res_x_vs_x, fvph_res_y, fvph_res_y_vs_y, cbm::RecoSetupManager::Instance(), CbmDigiManager::Instance(), CbmQaTask::IsMCUsed(), cbm::ca::kDetHitBrName, cbm::ca::kDetPointBrName, kEvent, kHit, kHitAccepted, kMcPoint, kMcPointWrongStation, cbm::algo::ca::kMuch, kNbinsPull, kRPull, cbm::algo::ca::kSts, cbm::algo::ca::kTof, CbmQaIO::MakeQaDirectory(), CbmQaIO::MakeQaObject(), CbmQaIO::ReadSpecificConfig(), and cbm::algo::ca::ToCbmModuleId().
Referenced by CbmCaInputQaMuch::InitQa(), CbmCaInputQaMvd::InitQa(), CbmCaInputQaSts::InitQa(), CbmCaInputQaTof::InitQa(), and CbmCaInputQaTrd::InitQa().
|
protected |
Checks, if the hit is acceptable (has reasonable parameters)
|
inlineinherited |
Returns flag, whether MC information is used or not in the task.
Definition at line 126 of file CbmQaTask.h.
References fbUseMC.
Referenced by cbm::ca::OutputQa::Check(), cbm::mvd::CbmMvdMcQaTask::Check(), CbmCaInputQaBase< DetID >::Check(), CbmRichRingRecoQa::Check(), cbm::ca::InputQaSetup::CheckInit(), cbm::ca::OutputQa::CreateFitQaPointSet(), cbm::ca::OutputQa::CreateSummary(), CbmCaInputQaBase< DetID >::CreateSummary(), cbm::ca::OutputQa::DrawEvent(), cbm::ca::OutputQa::DrawSetOf(), cbm::ca::OutputQa::ExecQa(), cbm::mvd::CbmMvdMcQaTask::ExecQa(), CbmCaInputQaBase< DetID >::ExecQa(), CbmRichRingRecoQa::ExecQa(), cbm::ca::InputQaSetup::FillHistogramsDet(), CbmRichRingRecoQa::InitHistograms(), cbm::ca::InputQaSetup::InitQa(), cbm::ca::OutputQa::InitQa(), cbm::mvd::CbmMvdMcQaTask::InitQa(), CbmCaInputQaBase< DetID >::InitQa(), and CbmRichRingRecoQa::InitQa().
|
protected |
checks if the track at mc point passes the track selection cuts
Definition at line 1599 of file CbmCaInputQaBase.cxx.
References fConfig, CbmMCTrack::GetMotherId(), cbm::algo::ca::kTof, and sqrt().
Referenced by ExecQa().
|
inherited |
Definition at line 132 of file CbmQaIO.cxx.
References fsRootFolderName.
Referenced by cbm::ca::InputQaSetup::InitQa(), and CbmCaInputQaBase< DetID >::InitQa().
|
inherited |
Definition at line 260 of file CbmQaIO.h.
References CheckProperty(), ConstructAndRegisterQaObject(), and fConfigNode.
Referenced by cbm::mvd::CbmMvdMcQaTask::BookHists_(), cbm::ca::OutputQa::Check(), CbmRichRingRecoQa::Check(), cbm::ca::TrackFitQa::CreatePullPlot(), cbm::ca::TrackFitQa::CreateResidualPlot(), cbm::ca::InputQaSetup::CreateSummary(), cbm::ca::OutputQa::CreateSummary(), CbmCaInputQaBase< DetID >::CreateSummary(), cbm::ca::OutputQa::DrawEvent(), cbm::ca::TrackFitQa::Init(), cbm::ca::TrackTypeQa::Init(), cbm::kfp::V0FinderQa::InitHistograms(), CbmRichRingRecoQa::InitHistograms(), cbm::ca::InputQaSetup::InitQa(), and CbmCaInputQaBase< DetID >::InitQa().
|
protectedinherited |
Puts setup title on the canvas.
Definition at line 248 of file CbmQaTask.cxx.
References fsSetupName.
Referenced by cbm::ca::InputQaSetup::CreateSummary().
|
inherited |
Reads check-list from the configuration file.
Definition at line 263 of file CbmQaTask.cxx.
References CbmQaIO::fConfigNode, and fmCheckList.
|
inlineprotectedinherited |
Reads the specific configuration structure from the YAML node.
| Config | Type of the configuration class |
The function is to be called in the user-defined class method InitDataBranches
Definition at line 126 of file CbmQaIO.h.
References fConfigNode, and cbm::util::yaml::Read().
Referenced by CbmCaInputQaBase< DetID >::InitQa().
|
finaloverrideprotectedinherited |
|
protectedvirtualinherited |
Applies properties on the canvas created with the MakeQaObject funciton.
| pCanv | Pointer to the canvas |
Definition at line 84 of file CbmQaIO.cxx.
Referenced by ConstructAndRegisterQaObject().
|
inlineinherited |
Sets check-file.
| pCheckFile | Shared pointer to the cross-check file |
Definition at line 134 of file CbmQaTask.h.
References fpBenchmarkInput.
|
inlineinherited |
Sets compare output file.
| pCompareOutput | Shared pointer to the comparison output file |
Definition at line 138 of file CbmQaTask.h.
References fpBenchmarkOutput.
|
inherited |
Creates a ROOT object.
Sets config name
| name | A path to the config |
Definition at line 95 of file CbmQaIO.cxx.
References fsConfigName.
|
inlineinherited |
|
inlineinherited |
Sets data processing (reconstruction) mode.
The reconstruction mode can be either ECbmRecoMode::Timeslice or ECbmRecoMode::EventByEvent. The first variant implies, that the data are processed within entire time-slice (in the event-by-event simulation within the entire event). For the second variant the data are processed within a loop of CbmEvent objects, if the branch of latter is accessible. By default the ECbmRecoMode::Timeslice is used.
Definition at line 152 of file CbmQaTask.h.
References fRecoMode.
|
inlineinherited |
Sets a common root path to the objects in the output file.
| path | A path to the object |
Definition at line 108 of file CbmQaIO.h.
References fsRootFolderName.
Referenced by CbmQaTask::CbmQaTask().
|
inlineinherited |
|
inlineinherited |
Set storing mode.
Definition at line 111 of file CbmQaIO.h.
References fStoringMode.
Referenced by CbmCaInputQaBase< DetID >::CbmCaInputQaBase().
|
protectedvirtualinherited |
Applies properties on the histogram created with the MakeQaObject function.
| pHist | Pointer to the histogram |
Reimplemented in cbm::ca::TrackTypeQa, and TrackTypeQa.
Definition at line 36 of file CbmQaIO.cxx.
References cbm::qa::util::GetHistStats().
Referenced by ConstructAndRegisterQaObject().
|
protectedvirtualinherited |
Applies properties on the histogram created with the MakeQaObject function.
| pHist | Pointer to the histogram |
Definition at line 50 of file CbmQaIO.cxx.
Referenced by ConstructAndRegisterQaObject().
|
protectedvirtualinherited |
Applies properties on the profile 2D created with the MakeQaObject function.
| pHist | Pointer to the profile |
Definition at line 67 of file CbmQaIO.cxx.
Referenced by ConstructAndRegisterQaObject().
|
inlineinherited |
|
protectedinherited |
Stores check flag to the check-list.
| tag | The flag name |
| result | Check result |
| msg | Supporting message (optional) |
Definition at line 311 of file CbmQaTask.cxx.
References fmCheckList.
Referenced by CbmRichRingRecoQa::Check().
|
protectedinherited |
Writes objects into file.
| pOutFile | Pointer to output ROOT file |
Definition at line 116 of file CbmQaIO.cxx.
References fpvObjList.
Referenced by CbmQaTask::Finish().
|
staticconstexprprotected |
Definition at line 179 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
privateinherited |
Flag, if MC is used.
Definition at line 240 of file CbmQaTask.h.
Referenced by CbmQaTask(), and IsMCUsed().
|
protected |
Task specific configuration parameters.
Definition at line 172 of file CbmCaInputQaBase.h.
Referenced by CheckRangePull(), InitQa(), and IsTrackSelected().
|
protectedinherited |
Configuration node.
Definition at line 163 of file CbmQaIO.h.
Referenced by CbmQaTask::CompareQaObjects(), MakeQaObject(), CbmQaTask::ReadCheckListFromConfig(), and ReadSpecificConfig().
|
protected |
Interface to digi branches.
Definition at line 287 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Current hit QA data object.
Definition at line 291 of file CbmCaInputQaBase.h.
Referenced by ExecQa(), and GetHitQaData().
|
privateinherited |
A QA check-list map.
The check list is updated with new entries with the StoreCheckResult(tag, result) function, which is to be called from the Check() function. The result is stored to CheckFlags::fResult field, while the CheckFlags::fStatus stays uninitialized. Than, when the ReadCheckListFromConfig() function is called, the fStatus is updated according to the check list entries in the qa_tasks_config_mcbm.yaml/qa_tasks_config_cbm.yaml. If the fStatus is false (default), the check is ignored in the final verdict making.
Definition at line 251 of file CbmQaTask.h.
Referenced by GetCheckList(), ReadCheckListFromConfig(), and StoreCheckResult().
|
protected |
Monitor for the input QA.
Definition at line 170 of file CbmCaInputQaBase.h.
|
protected |
|
protected |
Number of bins for z axis in overall views.
Definition at line 201 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
privateinherited |
Number of processed events.
Definition at line 256 of file CbmQaTask.h.
Referenced by Exec(), Finish(), and GetEventNumber().
|
privateinherited |
A file with default ROOT objects used for the cross-check.
Definition at line 261 of file CbmQaTask.h.
Referenced by SetCheckFile().
|
privateinherited |
An output file for histograms cross-check.
Definition at line 262 of file CbmQaTask.h.
Referenced by CompareTwoObjects(), and SetCompareOutput().
|
privateinherited |
Pointer to CbmEvent branch.
Definition at line 253 of file CbmQaTask.h.
|
protected |
Array of hit clusters.
Definition at line 184 of file CbmCaInputQaBase.h.
|
privateinherited |
Pointer to the current event.
Definition at line 254 of file CbmQaTask.h.
Referenced by Exec(), and GetCurrentEvent().
|
protected |
Instance of detector interface.
Definition at line 177 of file CbmCaInputQaBase.h.
Referenced by Check(), CreateSummary(), ExecQa(), and InitQa().
|
protected |
Array of hit matches.
Definition at line 191 of file CbmCaInputQaBase.h.
|
protected |
Array of hits.
Definition at line 183 of file CbmCaInputQaBase.h.
|
protected |
|
protected |
MC event list.
Definition at line 187 of file CbmCaInputQaBase.h.
|
protected |
Array of MC points.
Definition at line 189 of file CbmCaInputQaBase.h.
|
protected |
Array of MC tracks.
Definition at line 188 of file CbmCaInputQaBase.h.
|
protected |
Pointer to current time-slice.
Definition at line 181 of file CbmCaInputQaBase.h.
|
protectedinherited |
List of registered ROOT objects.
Definition at line 161 of file CbmQaIO.h.
Referenced by CbmQaIO(), ConstructAndRegisterQaObject(), cbm::ca::TrackTypeQa::Init(), cbm::ca::OutputQa::InitQa(), and WriteToFile().
|
protected |
Range for z-pos difference of the hit and point [cm].
Definition at line 215 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
privateinherited |
Reconstruction mode.
Definition at line 242 of file CbmQaTask.h.
Referenced by CbmQaTask(), Init(), and SetRecoMode().
|
protected |
Range for hit time error [ns].
Definition at line 207 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for hit u coordinate error [cm].
Definition at line 205 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for hit v coordinate error [cm].
Definition at line 206 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for hit x coordinate error [cm].
Definition at line 203 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for hit y coordinate error [cm].
Definition at line 204 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for residual of time [ns].
Definition at line 213 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for residual of u coordinate [cm].
Definition at line 211 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for residual of v coordinate [cm].
Definition at line 212 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for residual of x coordinate [cm].
Definition at line 209 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for residual of y coordinate [cm].
Definition at line 210 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for hit x coordinate [cm].
Definition at line 224 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for hit x coordinate [cm].
Definition at line 223 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for hit y coordinate [cm].
Definition at line 226 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for hit y coordinate [cm].
Definition at line 225 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for hit z coordinate [cm].
Definition at line 228 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protected |
Range for hit z coordinate [cm].
Definition at line 227 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
protectedinherited |
Name of configuration file.
Definition at line 157 of file CbmQaIO.h.
Referenced by GetConfigName(), and SetConfigName().
|
privateinherited |
Default tag (git SHA etc.)
Definition at line 259 of file CbmQaTask.h.
Referenced by CompareTwoObjects(), GetDefaultTag(), and SetDefaultTag().
|
protectedinherited |
Unique prefix for all writeable root.
Definition at line 158 of file CbmQaIO.h.
Referenced by CbmQaIO(), cbm::ca::TrackFitQa::CreatePullPlot(), cbm::ca::TrackTypeQa::Init(), and cbm::ca::OutputQa::InitQa().
|
protectedinherited |
Name of root folder.
Definition at line 156 of file CbmQaIO.h.
Referenced by ConstructAndRegisterQaObject(), cbm::ca::TrackTypeQa::Init(), cbm::ca::OutputQa::InitQa(), MakeQaDirectory(), and SetRootFolderName().
|
privateinherited |
Name of the setup (to draw on the canvases)
Definition at line 255 of file CbmQaTask.h.
Referenced by GetSetupName(), PutSetupNameOnPad(), and SetSetupName().
|
protectedinherited |
Objects storing mode.
Definition at line 160 of file CbmQaIO.h.
Referenced by CbmQaTask::CbmQaTask(), ConstructAndRegisterQaObject(), SetStoringMode(), cbm::ca::TrackFitQa::TrackFitQa(), and cbm::ca::TrackTypeQa::TrackTypeQa().
|
privateinherited |
Version tag (git SHA etc.)
Definition at line 258 of file CbmQaTask.h.
Referenced by CompareTwoObjects(), GetVersionTag(), and SetVersionTag().
|
protected |
Efficiency of hit reconstruction vs. x and y coordinates of MC.
Definition at line 284 of file CbmCaInputQaBase.h.
Referenced by Check(), CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
Definition at line 246 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
Definition at line 243 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), and InitQa().
|
protected |
Definition at line 244 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), and InitQa().
|
protected |
Definition at line 241 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), and InitQa().
|
protected |
Definition at line 242 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), and InitQa().
|
protected |
Definition at line 245 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
Difference between station and hit z positions [cm].
Definition at line 238 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
hit y vs x in different stations
Definition at line 234 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
hit x vs z in different stations
Definition at line 235 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
hit y vs z in different stations
Definition at line 236 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
number of points per one hit in different stations
Definition at line 249 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
difference between z of hit and MC point in different stations
Definition at line 255 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
point y vs x in different stations
Definition at line 251 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
point x vs z in different stations
Definition at line 252 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
point y vs z in different stations
Definition at line 253 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
pull for t coordinate in different stations
Definition at line 275 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
pull for t coordinate in different stations
Definition at line 281 of file CbmCaInputQaBase.h.
|
protected |
pull for u coordinate in different stations
Definition at line 273 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
pull for u coordinate in different stations
Definition at line 279 of file CbmCaInputQaBase.h.
|
protected |
pull for v coordinate in different stations
Definition at line 274 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
pull for v coordinate in different stations
Definition at line 280 of file CbmCaInputQaBase.h.
|
protected |
pull for x coordinate in different stations
Definition at line 271 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
pull for x coordinate in different stations
Definition at line 277 of file CbmCaInputQaBase.h.
|
protected |
pull for y coordinate in different stations
Definition at line 272 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
pull for y coordinate in different stations
Definition at line 278 of file CbmCaInputQaBase.h.
|
protected |
Distribution of hit reconstruction efficiency in bins of fvpe_reco_eff_vs_xy.
Definition at line 285 of file CbmCaInputQaBase.h.
Referenced by Check(), CreateSummary(), DeInit(), and InitQa().
|
protected |
residual for t coordinate in different stations
Definition at line 262 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
residual for t coordinate in different stations
Definition at line 268 of file CbmCaInputQaBase.h.
|
protected |
residual for u coordinate in different stations
Definition at line 260 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
residual for u coordinate in different stations
Definition at line 266 of file CbmCaInputQaBase.h.
|
protected |
residual for v coordinate in different stations
Definition at line 261 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
residual for v coordinate in different stations
Definition at line 267 of file CbmCaInputQaBase.h.
|
protected |
residual for x coordinate in different stations
Definition at line 258 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
residual for x coordinate in different stations
Definition at line 264 of file CbmCaInputQaBase.h.
|
protected |
residual for y coordinate in different stations
Definition at line 259 of file CbmCaInputQaBase.h.
Referenced by CreateSummary(), DeInit(), ExecQa(), and InitQa().
|
protected |
residual for y coordinate in different stations
Definition at line 265 of file CbmCaInputQaBase.h.
|
staticconstexprprotected |
Definition at line 197 of file CbmCaInputQaBase.h.
Referenced by ExecQa().
|
staticconstexprprotected |
Definition at line 220 of file CbmCaInputQaBase.h.
Referenced by InitQa().
|
staticconstexprprotected |
Range for pull histograms coordinate.
Definition at line 221 of file CbmCaInputQaBase.h.
Referenced by InitQa().