10 #ifndef LARDATAOBJ_RECOBASE_TRAJECTORYPOINTFLAGS_H 11 #define LARDATAOBJ_RECOBASE_TRAJECTORYPOINTFLAGS_H 254 static_assert(EndTrajectoryFlags <= BeginTrackFlags,
"Too many trajectory flags");
255 static_assert(EndTrackFlags <= BeginExperimentReservedFlags,
"Too many track flags");
256 static_assert(EndExperimentReservedFlags <= BeginUserReservedFlags,
257 "Too many experiment-defined flags");
258 static_assert(EndUserReservedFlags <= MaxFlags,
"Too many user-defined flags");
272 std::string baseName);
321 static constexpr
HitIndex_t InvalidHitIndex = std::numeric_limits<HitIndex_t>::max();
357 : fFromHit(fromHit), fFlags(flags)
376 template <
typename... Flags>
378 : TrajectoryPointFlags(fromHit,
makeMask(flags...))
395 return flagIndex < flags().capacity();
482 constexpr
Mask_t const&
mask()
const {
return flags().mask(); }
528 bool isMerged()
const {
return isSet(flag::Merged); }
531 bool isShared()
const {
return isSet(flag::Shared); }
616 template <
typename Stream>
617 void dump(Stream&& out,
618 unsigned int verbosity,
620 std::string indentFirst)
const;
633 template <
typename Stream>
634 void dump(Stream&& out,
unsigned int verbosity = 1, std::string indent = {})
const 636 dump(std::forward<Stream>(out), verbosity, indent, indent);
651 template <
typename... Flags>
655 static constexpr
Mask_t DefaultFlagsMask();
664 static constexpr
Mask_t ImperfectPointMask();
667 static constexpr
Mask_t SomehowSharedMask();
670 static constexpr
Mask_t ExcludedFromTrackFitMask();
684 template <
typename... Flags>
694 return (flags() == other.
flags()) && (fromHit() == other.
fromHit());
700 return sameAs(other);
706 return !sameAs(other);
713 return flag::NoPoint + flag::HitIgnored + flag::Suspicious + flag::Merged + flag::DeltaRay +
714 flag::DetectorIssue + flag::Shared;
720 return flag::Merged + flag::DeltaRay + flag::Shared;
726 return flag::ExcludedFromFit + flag::Rejected;
744 #endif // LARDATAOBJ_RECOBASE_TRAJECTORYPOINTFLAGS_H bool test(Flag_t flag) const
Returns whether the specified flag is set.
bool isHitIgnored() const
Returns whether the associated hit is considered ignored.
constexpr bool isFlag(FlagIndex_t flagIndex) const
static constexpr FlagIndex_t EndUserReservedFlags
After-the-last flag reserved to users.
static constexpr FlagIndex_t maxFlags()
Number of flags allocated (may be unused and unassigned).
static constexpr Flag_t Merged
The hit might have contribution from particles other than this.
constexpr bool operator!=(TrajectoryPointFlags const &other) const
Returns whether other has content different than this one.
static constexpr Flag_t Suspicious
The point reconstruction is somehow questionable.
bool isIncludedInFit() const
Reconstruction base classes.
static constexpr Mask_t makeMask(Flags...flags)
Returns a bit mask with only the specified bit set.
static constexpr Flag_t NoPoint
The trajectory point is not defined.
static constexpr Flag_t TrackReserved3
Reserved for a future track flag.
bool belongsToTrack() const
Returns whether the point has the Rejected flag set.
static constexpr FlagIndex_t EndTrajectoryFlags
After-the-last trajectory flag index.
bool isSet(Flag_t flag) const
Returns true if the flag exists and is set.
static constexpr Mask_t DefaultFlagsMask()
Flags used in default construction.
static constexpr bool isFlag(Flag_t flag)
Returns whether the specified index represents a valid flag.
static constexpr FlagIndex_t BeginTrackFlags
First track flag index.
static NameMap_t initNames()
Returns a map of flag names.
Flags_t::Flag_t Flag_t
Type of single flag.
bool isOtherwiseSuspicious() const
Returns whether the point has the Suspicious flag set.
constexpr TrajectoryPointFlags(HitIndex_t fromHit)
Constructor: specified hit index, default flags.
Namespace for the trajectory point flags.
constexpr Mask_t const & mask() const
Returns the entire set of bits as a bit mask.
bool isPointFlawed() const
Returns whether the trajectory point has any problem flagged.
static void setFlagNames(NameMap_t &flagNames)
Sets the names of the flags after default initialization.
static constexpr Flag_t TrackReserved1
Reserved for a future track flag.
static constexpr Flag_t Reinterpreted
The hit content has been elaborated before being used in the fit.
static constexpr FlagIndex_t BeginExperimentReservedFlags
First flag reserved to experiment.
A class containing a set of flags.
bool test(FlagIndex_t index) const
Returns whether the specified flag is set.
unsigned int HitIndex_t
Type for hit index.
static void initDefaultFlagRangeNames(NameMap_t &flagNames, FlagIndex_t BeginFlags, FlagIndex_t EndFlags, std::string baseName)
Initializes a range of flag names with default (decorated) names.
Flags_t::FlagIndex_t FlagIndex_t
Type of index of a single flag.
constexpr HitIndex_t fromHit() const
A class containing a set of flags.
bool isPointValid() const
Returns whether the associated point is valid.
constexpr TrajectoryPointFlags(HitIndex_t fromHit, Mask_t flags)
Constructor: copies all the flags.
static constexpr unsigned int MaxFlags
Number of flags allocated (may be unused and unassigned).
static std::string decorateFlagName(std::string baseName, Flag_t flag)
Combines a base name and an index into a flag name.
bool isShared() const
Returns whether the point has the Shared flag set.
static std::string invalidFlagName(Flag_t flag)
Returns the name of an invalid flag with the specified index.
constexpr bool hasOriginalHitIndex() const
static constexpr Mask_t ExcludedFromTrackFitMask()
Flags to define a hit that is not included in the track fit.
constexpr Flags_t const & flags() const
Returns the entire set of bits.
std::string indent(std::size_t const i)
constexpr bool operator==(TrajectoryPointFlags const &other) const
Returns whether other has the same content as this one.
bool noneSet(Mask_t mask) const
Returns whether none of the bits set in the mask is set.
typename Mask_t::Flag_t Flag_t
Type identifying a single flag.
static void initDefaultFlagsNames(NameMap_t &flagNames)
Initialises all flag names with a default name.
static constexpr Mask_t ImperfectPointMask()
Flags to define a non-perfect trajectory point.
static constexpr Mask_t SomehowSharedMask()
Flags to define a hit that is in some way shared.
constexpr bool sameAs(TrajectoryPointFlags const &other) const
Implementation detail of operator==()
bool isDeltaRay() const
Returns whether the point has the DeltaRay flag set.
static constexpr Flag_t TrackReserved4
Reserved for a future track flag.
static constexpr FlagIndex_t EndTrackFlags
After-the-last track flag index.
static constexpr FlagIndex_t EndExperimentReservedFlags
After-the-last flag reserved to experiment.
static constexpr Flag_t HitIgnored
Hit was not included for the computation of the trajectory.
typename Mask_t::FlagIndex_t FlagIndex_t
Type of index of flag.
Flags_t::Flag_t Flag_t
Type of single flag.
static std::string name(Flag_t flag)
Returns a string with the name of the specified flag.
static constexpr Flag_t Rejected
The hit is extraneous to this track.
static constexpr Flag_t ExcludedFromFit
Collection of utilities for dumping data on screen.
Flags_t::Mask_t Mask_t
Type of mask of bits.
constexpr BitMask< Storage > makeMask(Bits_t< Storage > bits)
Constructs a mask from bits.
bool match(Mask_t mask) const
Returns true if the specified mask is matched.
bool hasDetectorIssues() const
Returns whether the point has the DetectorIssue flag set.
bool isUnset(Flag_t flag) const
Returns true if the flag exists and is not set.
bool isPointFlawless() const
Returns whether the trajectory point has no flagged problem.
bool anySet(Mask_t mask) const
Returns whether any of the bits set in the mask are set.
constexpr bool isFlag(Flag_t flag) const
static constexpr Flag_t TrackReserved5
Reserved for a future track flag.
static constexpr FlagIndex_t BeginTrajectoryFlags
First trajectory flag index.
std::array< std::string, MaxFlags > NameMap_t
Type storing flag names.
static constexpr Flag_t TrajReserved1
Reserved for a future trajectory flag.
bool operator!=(infinite_endcount_iterator< T > const &, count_iterator< T > const &)
Never admit a infinite_endcount_iterator to be equal to anything else.
bool isHitReinterpreted() const
Returns whether the point has the Reinterpreted flag set.
static constexpr FlagIndex_t BeginUserReservedFlags
First flag reserved to users.
static constexpr Flag_t DetectorIssue
The hit is associated to a problematic channel.
bool isExcludedFromFit() const
Returns whether the point has the ExcludedFromFit flag set.
constexpr bool isAllocated(FlagIndex_t flagIndex) const
Returns whether there is room for a flag with the specified index.
static constexpr Flag_t DeltaRay
The hit might have contribution from a δ ray.
bool isDefined(Flag_t flag) const
Returns true if the flag has been assigned a value.
Flags_t::FlagIndex_t FlagIndex_t
Type of index of single flag.
static constexpr Flag_t TrackReserved2
Reserved for a future track flag.
bool isMerged() const
Returns whether the point has the Merged flag set.
static const NameMap_t names
Names of the flags.
static constexpr Flag_t Shared
The hit is known to be associated also to another trajectory.
bool operator==(infinite_endcount_iterator< T > const &, count_iterator< T > const &)
constexpr TrajectoryPointFlags(HitIndex_t fromHit, Flags...flags)
Constructor: activates only the specified flags.
void dump(Stream &&out, unsigned int verbosity=1, std::string indent={}) const
Prints flag content into a stream.
Set of flags pertaining a point of the track.
BitMask< Storage > Mask_t
Type of bit mask for this flag set.
std::ostream & operator<<(std::ostream &o, Cluster const &c)
constexpr FlagIndex_t nFlags() const
Returns the number of defined flags.