Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class FixedSkipBC_InteractionSampler : public InteractionSampler
private:
int mEveryN; // the skip number ---> fills every N-th BC in the bunch filling scheme
int mMultiplicity; // how many events to put if bc is filled
ClassDef(FixedSkipBC_InteractionSampler, 1);
ClassDefOverride(FixedSkipBC_InteractionSampler, 1);
};

// A version of the interaction sampler which can sample according to non-uniform mu(bc) as
Expand All @@ -152,7 +152,7 @@ class NonUniformMuInteractionSampler : public InteractionSampler
private:
// non-uniformity
std::vector<float> mBCIntensityScales;
ClassDef(NonUniformMuInteractionSampler, 1);
ClassDefOverride(NonUniformMuInteractionSampler, 1);
};

} // namespace steer
Expand Down
6 changes: 3 additions & 3 deletions Detectors/TPC/base/src/TPCBaseLinkDef.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@
#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++ 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)
#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
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#pragma link off all functions;

#pragma link C++ class o2::ecal::Geometry + ;
#pragma link C++ class o2::ecal::GeometryTGeo +
#pragma link C++ class o2::ecal::GeometryTGeo + ;
#pragma link C++ class o2::ecal::ECalBaseParam + ;
#pragma link C++ class o2::ecal::Hit + ;
#pragma link C++ class o2::conf::ConfigurableParamHelper < o2::ecal::ECalBaseParam> + ;
Expand Down
2 changes: 1 addition & 1 deletion Detectors/Upgrades/ALICE3/MID/base/src/MI3BaseLinkDef.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#pragma link off all classes;
#pragma link off all functions;

#pragma link C++ class o2::mi3::GeometryTGeo +
#pragma link C++ class o2::mi3::GeometryTGeo + ;
#pragma link C++ class o2::mi3::MIDBaseParam + ;
#pragma link C++ class o2::conf::ConfigurableParamHelper < o2::mi3::MIDBaseParam> + ;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#pragma link off all classes;
#pragma link off all functions;

#pragma link C++ class o2::rich::GeometryTGeo +
#pragma link C++ class o2::rich::GeometryTGeo + ;
#pragma link C++ class o2::rich::RICHBaseParam + ;
#pragma link C++ class o2::conf::ConfigurableParamHelper < o2::rich::RICHBaseParam> + ;

Expand Down
Loading