Skip to content

Commit cfa5bc2

Browse files
authored
Merge branch 'dev' into zdc-beamline-standalone
2 parents 6b1f1fc + ebfb379 commit cfa5bc2

46 files changed

Lines changed: 987 additions & 413 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/clean-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ name: Clean PR checks
2424
type: boolean
2525
default: true
2626
'check_build/O2/fullCI_slc9':
27-
description: build/O2/fullCI
27+
description: build/O2/fullCI_slc9
2828
type: boolean
2929
default: true
3030
'check_build/O2/o2-dataflow-slc9':

DataFormats/Detectors/FOCAL/include/DataFormatsFOCAL/ErrorHandling.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace o2::focal
1818
{
19-
class IndexExceptionEvent : public std::exception
19+
class IndexExceptionEvent final : public std::exception
2020
{
2121
public:
2222
enum class IndexType_t {

Detectors/Align/Workflow/src/barrel-alignment-workflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ WorkflowSpec defineDataProcessing(ConfigContext const& configcontext)
151151
}
152152

153153
if (!configcontext.options().get<bool>("disable-root-input")) {
154-
specs.emplace_back(o2::tpc::getTPCScalerSpec(sclOpt.lumiType == o2::tpc::LumiScaleType::TPCScaler, sclOpt.enableMShapeCorrection, sclOpt));
154+
specs.emplace_back(o2::tpc::getTPCScalerSpec(sclOpt));
155155
}
156156

157157
specs.emplace_back(o2::align::getBarrelAlignmentSpec(srcMP, src, dets, skipDetClusters, enableCosmic, postprocess, useMC));

Detectors/EMCAL/calib/include/EMCALCalib/CalibContainerErrors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace emcal
2626
/// \ingroup EMCALCalib
2727
/// \author Markus Fasel <markus.fasel@cern.ch>, Oak Ridge National Laboratory
2828
/// \since Sept 15, 2022
29-
class CalibContainerIndexException : public std::exception
29+
class CalibContainerIndexException final : public std::exception
3030
{
3131
public:
3232
/// \brief Constructor

Detectors/FOCAL/base/src/Composition.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Composition::Composition(std::string material, int layer, int stack, int id,
2828
// Default constructor
2929
}
3030

31-
Composition::Composition(Composition* comp) : mMaterial(nullptr),
31+
Composition::Composition(Composition* comp) : mMaterial(),
3232
mLayer(0),
3333
mStack(0),
3434
mId(0),

Detectors/FOCAL/calibration/include/FOCALCalibration/PadPedestalCalibDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
namespace o2::focal
2727
{
2828

29-
class PadPedestalCalibDevice : public framework::Task
29+
class PadPedestalCalibDevice final : public framework::Task
3030
{
3131
public:
3232
enum Method_t {

Detectors/GlobalTrackingWorkflow/src/cosmics-match-workflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ WorkflowSpec defineDataProcessing(ConfigContext const& configcontext)
107107
GID::mask_t srcCl = src;
108108
GID::mask_t dummy;
109109
if (!configcontext.options().get<bool>("disable-root-input")) {
110-
specs.emplace_back(o2::tpc::getTPCScalerSpec(sclOpt.lumiType == o2::tpc::LumiScaleType::TPCScaler, sclOpt.enableMShapeCorrection, sclOpt));
110+
specs.emplace_back(o2::tpc::getTPCScalerSpec(sclOpt));
111111
}
112112
bool usePV = configcontext.options().get<bool>("use-pv-info");
113113
specs.emplace_back(o2::globaltracking::getCosmicsMatchingSpec(src, usePV, useMC));

Detectors/GlobalTrackingWorkflow/src/secondary-vertexing-workflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ WorkflowSpec defineDataProcessing(ConfigContext const& configcontext)
102102
}
103103
WorkflowSpec specs;
104104
if (!configcontext.options().get<bool>("disable-root-input")) {
105-
specs.emplace_back(o2::tpc::getTPCScalerSpec(sclOpt.lumiType == o2::tpc::LumiScaleType::TPCScaler, sclOpt.enableMShapeCorrection, sclOpt));
105+
specs.emplace_back(o2::tpc::getTPCScalerSpec(sclOpt));
106106
}
107107
specs.emplace_back(o2::vertexing::getSecondaryVertexingSpec(src, enableCasc, enable3body, enableStrTr, enableCCDBParams, useMC, useGeom));
108108

Detectors/GlobalTrackingWorkflow/src/tof-matcher-workflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ WorkflowSpec defineDataProcessing(ConfigContext const& configcontext)
169169
}
170170
}
171171
if (!configcontext.options().get<bool>("disable-root-input")) {
172-
specs.emplace_back(o2::tpc::getTPCScalerSpec(sclOpt.lumiType == o2::tpc::LumiScaleType::TPCScaler, sclOpt.enableMShapeCorrection, sclOpt));
172+
specs.emplace_back(o2::tpc::getTPCScalerSpec(sclOpt));
173173
}
174174
specs.emplace_back(o2::globaltracking::getTOFMatcherSpec(src, useMC, useFIT, refitTPCTOF, strict, extratolerancetrd, writeMatchable, sclOpt.requestCTPLumi, nLanes)); // doTPCrefit not yet supported (need to load TPC clusters?)
175175

Detectors/GlobalTrackingWorkflow/src/tpcits-match-workflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ WorkflowSpec defineDataProcessing(o2::framework::ConfigContext const& configcont
9494

9595
o2::framework::WorkflowSpec specs;
9696
if (!configcontext.options().get<bool>("disable-root-input")) {
97-
specs.emplace_back(o2::tpc::getTPCScalerSpec(sclOpt.lumiType == o2::tpc::LumiScaleType::TPCScaler, sclOpt.enableMShapeCorrection, sclOpt));
97+
specs.emplace_back(o2::tpc::getTPCScalerSpec(sclOpt));
9898
}
9999
specs.emplace_back(o2::globaltracking::getTPCITSMatchingSpec(srcL, useFT0, calib, !GID::includesSource(GID::TPC, src), useGeom, useMC, sclOpt.requestCTPLumi));
100100

0 commit comments

Comments
 (0)