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 7daf794 commit 84edbddCopy full SHA for 84edbdd
PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx
@@ -138,6 +138,22 @@ enum PartID {
138
he
139
};
140
141
+struct Candidate {
142
+ float p = -999.f; // momentum * charge
143
+ float eta = -999.f;
144
+ float phi = -999.f;
145
+ uint32_t itsClusterSize = 0;
146
+ uint8_t partID = PartID::none;
147
+ float pTPC = -999.f;
148
+ uint32_t pidInTrk = 0; // PID in tracking
149
+ float nsigmaTPC = -999.f;
150
+ float nsigmaTOF = -999.f;
151
+ float tofMass = -999.f;
152
+ float cosPAMother = -999.f; // Cosine of the pointing angle of the mother
153
+ float massMother = -999.f; // Invariant mass of the mother
154
+ int pdgCode = 0;
155
+}
156
+
157
struct LfTreeCreatorClusterStudies {
158
159
Service<o2::ccdb::BasicCCDBManager> m_ccdb;
0 commit comments