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 ff118eb commit ac2bcf3Copy full SHA for ac2bcf3
DataFormats/Detectors/TRD/include/DataFormatsTRD/Tracklet64.h
@@ -190,6 +190,10 @@ class Tracklet64
190
return getDynamicCharge((mtrackletWord & Q2mask) >> Q2bs);
191
}
192
}; // no unit
193
+ GPUd() int getQTot() const
194
+ {
195
+ return getQ0() + getQ1() + getQ2();
196
+ }; // no unit
197
198
// ----- Setters for tracklet word manipulation -----
199
GPUd() void setTrackletWord(uint64_t trackletword) { mtrackletWord = trackletword; }
0 commit comments