File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3509,10 +3509,10 @@ struct HfTrackIndexSkimCreatorLfCascades {
35093509 }
35103510
35113511 // invariant mass
3512- if (config.massXiPiPiMin >= 0 . && config.massXiPiPiMax > 0 .) {
3512+ if (config.massXiPiPiMin >= 0 .f && config.massXiPiPiMax > 0 .f ) {
35133513 const double invMassMin = config.massXiPiPiMin ;
35143514 const double invMassMax = config.massXiPiPiMax ;
3515- const auto arrMom = std::array{pVecXi, pVecPi1, pVecPi2};
3515+ const std::array arrMom {pVecXi, pVecPi1, pVecPi2};
35163516 const auto invMass2 = RecoDecay::m2 (arrMom, arrMass3Prong[hf_cand_casc_lf::DecayType3Prong::XicplusToXiPiPi]);
35173517 if (invMass2 < invMassMin * invMassMin || invMass2 >= invMassMax * invMassMax) {
35183518 return false ;
You can’t perform that action at this time.
0 commit comments