Skip to content

Commit 3a54519

Browse files
committed
Fix
1 parent 0437df1 commit 3a54519

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PWGDQ/Core/MCSignalLibrary.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ MCSignal* o2::aod::dqmcsignals::GetMCSignal(const char* name)
4646
return signal;
4747
}
4848
if (!nameStr.compare("pionPrimary")) {
49-
MCProng prong(1, {211}, {true}, {false}, {0}, {0}, {false}); // define 1-generation prong using the full constructor
49+
MCProng prong(1, {211}, {true}, {false}, {0}, {0}, {false}); // define 1-generation prong using the full constructor
5050
prong.SetSourceBit(0, MCProng::kPhysicalPrimary); // set source to be ALICE primary particles
5151
signal = new MCSignal(name, "Primary electrons", {prong}, {-1}); // define the signal using the full constructor
5252
return signal;
@@ -366,8 +366,8 @@ MCSignal* o2::aod::dqmcsignals::GetMCSignal(const char* name)
366366
if (!nameStr.compare("HFdecayToE")) {
367367
MCProng prong(2, {902, 11}, {true, true}, {false, false}, {0, 0}, {0, 0}, {false, false});
368368
// prong.SetSourceBit(0, MCProng::kPhysicalPrimary, false); // set source to be ALICE primary particles
369-
prong.SetSignalInTime(true); // set direction to check for daughters (true, in time) or for mothers (false, back in time)
370-
signal = new MCSignal(name, "Open charm and beauty to electrons", {prong}, {-1});
369+
prong.SetSignalInTime(true); // set direction to check for daughters (true, in time) or for mothers (false, back in time)
370+
signal = new MCSignal(name, "Open charm and beauty to electrons", {prong}, {-1});
371371
return signal;
372372
}
373373
// if (!nameStr.compare("LFQtoPC")) {

0 commit comments

Comments
 (0)