File tree Expand file tree Collapse file tree
DataFormats/Detectors/TPC/include/DataFormatsTPC Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class TrackTPC : public o2::track::TrackParCov
4646 unsigned short getClustersSideInfo () const { return mFlags & HasBothSidesClusters; }
4747 bool hasASideClusters () const { return mFlags & HasASideClusters; }
4848 bool hasCSideClusters () const { return mFlags & HasCSideClusters; }
49- bool hasBothSidesClusters () const { return mFlags & (HasASideClusters | HasCSideClusters); }
49+ bool hasBothSidesClusters () const { return ( mFlags & (HasASideClusters | HasCSideClusters)) == (HasASideClusters | HasCSideClusters); }
5050 bool hasASideClustersOnly () const { return (mFlags & HasBothSidesClusters) == HasASideClusters; }
5151 bool hasCSideClustersOnly () const { return (mFlags & HasBothSidesClusters) == HasCSideClusters; }
5252
You can’t perform that action at this time.
0 commit comments