Add ITS fake clusters information to the mcMask#14666
Add ITS fake clusters information to the mcMask#14666shahor02 merged 2 commits intoAliceO2Group:devfrom
Conversation
|
REQUEST FOR PRODUCTION RELEASES: This will add The following labels are available |
shahor02
left a comment
There was a problem hiding this comment.
Thanks, just 1 comment below.
| } | ||
| if (trackIndex.includesDet(DetID::ITS)) { | ||
| auto itsGID = data.getITSContributorGID(trackIndex); | ||
| if (itsGID.isIndexSet()) { |
There was a problem hiding this comment.
This check is not needed, if trackIndex.includesDet(DetID::ITS) is true, then the itsGID.isIndexSet() is guaranteed.
Just check
if (itsGID.getSource() == GIndex::ITS) {
... as ITS track
} else {
... as AB track
}
|
Hi @shahor02, can we merge this if it looks good, thanks. |
* Add ITS fake clusters information to the mcMask * remove redundant check --------- Co-authored-by: Francesco Mazzaschi <fmazzasc@alipap1.cern.ch>
BITS 0-6 were not set, in contrary to what was stated in the mcMask description in
AnalysisDataModel.h.I also added a bit to account for fake AB ITS tracklets (BIT 12) and fixed the description of the last three bits in
AnalysisDataModel.hCould you please have a look?
@shahor02 @jgrosseo @ddobrigk