We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b27145 commit 54c310fCopy full SHA for 54c310f
PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx
@@ -196,12 +196,12 @@ struct StrangenessBuilder {
196
kCascFoundTags,
197
nTables };
198
199
- enum V0PreSelection : uint8_t { selGamma = 0,
+ enum V0PreSelection : uint8_t { selGamma = static_cast<uint8_t>(1) << static_cast<uint8_t>(0),
200
selK0Short,
201
selLambda,
202
selAntiLambda };
203
204
- enum CascPreSelection : uint8_t { selXiMinus = 0,
+ enum CascPreSelection : uint8_t { selXiMinus = static_cast<uint8_t>(1) << static_cast<uint8_t>(0),
205
selXiPlus,
206
selOmegaMinus,
207
selOmegaPlus };
0 commit comments