Skip to content

Commit feaac1e

Browse files
committed
further fixes
1 parent b99fa2a commit feaac1e

1 file changed

Lines changed: 0 additions & 49 deletions

File tree

PWGDQ/Tasks/dqEfficiency_withAssoc.cxx

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,6 @@ struct AnalysisEventSelection {
321321
std::map<std::string, std::string> fMetadataRCT, fHeader;
322322
int fCurrentRun = -1;
323323

324-
AnalysisEventSelection() : fHistMan(nullptr), fEventCut(nullptr), fCurrentRun(-1) {}
325-
326324
void init(o2::framework::InitContext& context)
327325
{
328326
if (context.mOptions.get<bool>("processDummy")) {
@@ -573,8 +571,6 @@ struct AnalysisTrackSelection {
573571
std::map<int64_t, std::vector<int64_t>> fNAssocsInBunch; // key: track global index, value: vector of global index for events associated in-bunch (events that have in-bunch pileup or splitting)
574572
std::map<int64_t, std::vector<int64_t>> fNAssocsOutOfBunch; // key: track global index, value: vector of global index for events associated out-of-bunch (events that have no in-bunch pileup)
575573

576-
AnalysisTrackSelection() : fHistMan(nullptr), fCurrentRun(0) {}
577-
578574
void init(o2::framework::InitContext& context)
579575
{
580576
if (context.mOptions.get<bool>("processDummy")) {
@@ -898,8 +894,6 @@ struct AnalysisMuonSelection {
898894
std::map<int64_t, std::vector<int64_t>> fNAssocsInBunch; // key: track global index, value: vector of global index for events associated in-bunch (events that have in-bunch pileup or splitting)
899895
std::map<int64_t, std::vector<int64_t>> fNAssocsOutOfBunch; // key: track global index, value: vector of global index for events associated out-of-bunch (events that have no in-bunch pileup)
900896

901-
AnalysisMuonSelection() : fHistMan(nullptr), fCurrentRun(0) {}
902-
903897
void init(o2::framework::InitContext& context)
904898
{
905899
if (context.mOptions.get<bool>("processDummy")) {
@@ -1191,8 +1185,6 @@ struct AnalysisPrefilterSelection {
11911185

11921186
Preslice<aod::ReducedTracksAssoc> trackAssocsPerCollision = aod::reducedtrack_association::reducedeventId;
11931187

1194-
AnalysisPrefilterSelection() : fPairCut(nullptr), fPrefilterMask(0), fPrefilterCutBit(-1) {}
1195-
11961188
void init(o2::framework::InitContext& context)
11971189
{
11981190
if (context.mOptions.get<bool>("processDummy")) {
@@ -1481,21 +1473,6 @@ struct AnalysisSameEventPairing {
14811473
Configurable<int> fConfigMixingDepth{"cfgMixingDepth", 100, "Number of Events stored for event mixing"};
14821474
NoBinningPolicy<aod::dqanalysisflags::MixingHash> hashBin;
14831475

1484-
AnalysisSameEventPairing()
1485-
: fCurrentRun(-1),
1486-
fHistMan(nullptr),
1487-
fTrackFilterMask(0),
1488-
fMuonFilterMask(0),
1489-
fNCutsBarrel(0),
1490-
fNCutsMuon(0),
1491-
fNPairCuts(0),
1492-
fEnableBarrelHistos(false),
1493-
fEnableMuonHistos(false),
1494-
fEnableBarrelMuonHistos(false),
1495-
fEnableBarrelMuonMixingHistos(false)
1496-
{
1497-
}
1498-
14991476
void init(o2::framework::InitContext& context)
15001477
{
15011478
if (context.mOptions.get<bool>("processDummy")) {
@@ -3231,19 +3208,6 @@ struct AnalysisAsymmetricPairing {
32313208
// Map to track how many times a pair of tracks has been encountered
32323209
std::map<std::pair<int32_t, int32_t>, int8_t> fPairCount;
32333210

3234-
AnalysisAsymmetricPairing()
3235-
: fCurrentRun(-1),
3236-
fHistMan(nullptr),
3237-
fNPairHistPrefixes(0),
3238-
fLegAFilterMask(0),
3239-
fLegBFilterMask(0),
3240-
fLegCFilterMask(0),
3241-
fCommonTrackCutMask(0),
3242-
fNLegCuts(0),
3243-
fNCommonTrackCuts(0)
3244-
{
3245-
}
3246-
32473211
void init(o2::framework::InitContext& context)
32483212
{
32493213
bool isMCGen = context.mOptions.get<bool>("processMCGen") || context.mOptions.get<bool>("processMCGenWithEventSelection");
@@ -4240,19 +4204,6 @@ struct AnalysisDileptonTrack {
42404204

42414205
NoBinningPolicy<aod::dqanalysisflags::MixingHash> fHashBin;
42424206

4243-
AnalysisDileptonTrack()
4244-
: fCurrentRun(-1),
4245-
fNCuts(0),
4246-
fNLegCuts(0),
4247-
fNPairCuts(0),
4248-
fNCommonTrackCuts(0),
4249-
fTrackCutBitMap(0),
4250-
fValuesDilepton(nullptr),
4251-
fValuesHadron(nullptr),
4252-
fHistMan(nullptr)
4253-
{
4254-
}
4255-
42564207
void init(o2::framework::InitContext& context)
42574208
{
42584209
bool isBarrel = context.mOptions.get<bool>("processBarrelSkimmed");

0 commit comments

Comments
 (0)