Skip to content

Commit 0eb94bd

Browse files
committed
Fix whitespace
1 parent f22de23 commit 0eb94bd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Framework/Core/include/Framework/AnalysisDataModel.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1990,16 +1990,16 @@ namespace mcparticle_v2
19901990
// note: this has to be declared in a separate namespace so it does not conflict with existing
19911991
// derived data table declarations in O2Physics
19921992
DECLARE_SOA_DYNAMIC_COLUMN(IsPhysicalPrimary, isPhysicalPrimary, //! True if particle is considered a physical primary according to the ALICE definition
1993-
[](uint8_t flags, float vx, float vy) -> bool {
1994-
if(std::hypot(vx, vy) > o2::aod::mcparticle::maxRadiusForPhysicalPrimary) return o2::aod::mcparticle::enums::FromBackgroundEvent;
1993+
[](uint8_t flags, float vx, float vy) -> bool {
1994+
if(std::hypot(vx, vy) > o2::aod::mcparticle::maxRadiusForPhysicalPrimary) return o2::aod::mcparticle::enums::FromBackgroundEvent;
19951995
return (flags & o2::aod::mcparticle::enums::PhysicalPrimary) == o2::aod::mcparticle::enums::PhysicalPrimary; });
19961996

19971997
// avoid that the stored flags are provided unprotected via
19981998
// the getter '.flags': analysers will get the correct bit map transparently
19991999
DECLARE_SOA_COLUMN(Flags, storedFlags, uint8_t); //! ALICE specific flags, see MCParticleFlags. Do not use directly. Use the dynamic columns, e.g. producedByGenerator()
20002000
DECLARE_SOA_DYNAMIC_COLUMN(McParticleFlags, flags, //! protected against
2001-
[](uint8_t input_flags, float vx, float vy) -> uint8_t {
2002-
if(std::hypot(vx, vy) > o2::aod::mcparticle::maxRadiusForPhysicalPrimary) return o2::aod::mcparticle::enums::FromBackgroundEvent;
2001+
[](uint8_t input_flags, float vx, float vy) -> uint8_t {
2002+
if(std::hypot(vx, vy) > o2::aod::mcparticle::maxRadiusForPhysicalPrimary) return o2::aod::mcparticle::enums::FromBackgroundEvent;
20032003
return input_flags; });
20042004

20052005
} // namespace mcparticle_v2

0 commit comments

Comments
 (0)