-
Notifications
You must be signed in to change notification settings - Fork 496
Expand file tree
/
Copy pathTPCBaseLinkDef.h
More file actions
86 lines (79 loc) · 4.69 KB
/
TPCBaseLinkDef.h
File metadata and controls
86 lines (79 loc) · 4.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
#ifdef __CLING__
#pragma link off all globals;
#pragma link off all classes;
#pragma link off all functions;
#pragma link C++ class o2::tpc::CalArray < float> + ;
#pragma link C++ class o2::tpc::CalArray < double> + ;
#pragma link C++ class o2::tpc::CalArray < int> + ;
#pragma link C++ class o2::tpc::CalArray < unsigned> + ;
#pragma link C++ class o2::tpc::CalArray < short> + ;
#pragma link C++ class o2::tpc::CalArray < bool> + ;
#pragma link C++ class o2::tpc::CalDet < float> + ;
#pragma link C++ class o2::tpc::CalDet < double> + ;
#pragma link C++ class o2::tpc::CalDet < int> + ;
#pragma link C++ class o2::tpc::CalDet < unsigned> + ;
#pragma link C++ class o2::tpc::CalDet < short> + ;
#pragma link C++ class o2::tpc::CalDet < bool> + ;
#pragma link C++ class std::vector < o2::tpc::CalDet < float>> + ;
#pragma link C++ class std::vector < o2::tpc::CalDet < float>*> + ;
#pragma link C++ class std::unordered_map < std::string, o2::tpc::CalDet < float>> + ;
#pragma link C++ class o2::tpc::ContainerFactory;
#pragma link C++ class o2::tpc::CRU;
#pragma link C++ class o2::tpc::DigitPos;
#pragma link C++ class o2::tpc::ModelGEM;
#pragma link C++ class o2::tpc::FECInfo;
#pragma link C++ class o2::tpc::Mapper;
#pragma link C++ class o2::tpc::PadInfo;
#pragma link C++ class o2::tpc::PadPos;
#pragma link C++ class o2::tpc::PadRegionInfo;
#pragma link C++ class o2::tpc::PadROCPos;
#pragma link C++ class o2::tpc::PadSecPos;
#pragma link C++ class o2::tpc::PartitionInfo;
#pragma link C++ class o2::tpc::ROC;
#pragma link C++ class o2::tpc::Sector;
// #pragma link C++ class std::vector <TCanvas*> + ;
#pragma link C++ class o2::tpc::ParameterDetector;
#pragma link C++ class o2::conf::ConfigurableParamHelper < o2::tpc::ParameterDetector> + ;
#pragma link C++ class o2::tpc::ParameterElectronics;
#pragma link C++ class o2::conf::ConfigurableParamHelper < o2::tpc::ParameterElectronics> + ;
#pragma link C++ class o2::tpc::ParameterGas;
#pragma link C++ class o2::conf::ConfigurableParamHelper < o2::tpc::ParameterGas> + ;
#pragma link C++ enum o2::tpc::AmplificationMode;
#pragma link C++ enum o2::tpc::DigitzationMode;
#pragma link C++ struct o2::tpc::ParameterGEM;
#pragma link C++ class o2::conf::ConfigurableParamHelper < o2::tpc::ParameterGEM> + ;
#pragma link C++ class o2::tpc::IonTailSettings + ;
#pragma link C++ class o2::conf::ConfigurableParamHelper < o2::tpc::IonTailSettings> + ;
#pragma link C++ class o2::tpc::FEEConfig + ;
#pragma link C++ class o2::tpc::CRUConfig + ;
#pragma link C++ class o2::tpc::CommonModeCorrection + ;
#pragma link C++ class std::vector < o2::tpc::CommonModeCorrection::CMInfo> + ;
#pragma link C++ class std::vector < o2::tpc::CommonModeCorrection::CMDebug> + ;
#pragma link C++ namespace o2::tpc::utils;
#pragma link C++ function o2::tpc::utils::tokenize(const std::string_view, const std::string_view);
#pragma link C++ function o2::tpc::utils::getBinInfoXY(int&, int&, float&, float&);
#pragma link C++ function o2::tpc::utils::addFECInfo();
#pragma link C++ function o2::tpc::utils::saveCanvases(TObjArray*, std::string_view, std::string_view, std::string_view);
#pragma link C++ function o2::tpc::utils::saveCanvas(TCanvas*, std::string_view, std::string_view);
#pragma link C++ namespace o2::tpc::cru_calib_helpers;
#pragma link C++ defined_in "TPCBase/CRUCalibHelpers.h"
#pragma link C++ function o2::tpc::cru_calib_helpers::getHWChannel(int, int, int);
#pragma link C++ function o2::tpc::cru_calib_helpers::getSampaInfo(int, int);
#pragma link C++ function o2::tpc::cru_calib_helpers::floatToFixedSize < 12, 2>(float);
#pragma link C++ function o2::tpc::cru_calib_helpers::floatToFixedSize < 8, 6>(float);
#pragma link C++ function o2::tpc::cru_calib_helpers::fixedSizeToFloat < 2>(float);
#pragma link C++ function o2::tpc::cru_calib_helpers::fixedSizeToFloat < 6>(float);
#pragma link C++ function o2::tpc::cru_calib_helpers::writeValues(const std::string_view, const o2::tpc::cru_calib_helpers::DataMap&, bool);
#pragma link C++ function o2::tpc::cru_calib_helpers::getCalPad < 2>(const std::string_view, const std::string_view, std::string_view)
#pragma link C++ function o2::tpc::cru_calib_helpers::getCalPad < 6>(const std::string_view, const std::string_view, std::string_view)
#endif