File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ struct pidStudies {
113113 {
114114 }
115115
116- template <bool isMc, typename Cand>
116+ template <typename Cand>
117117 void fillTree (Cand const & candidate, const int & flag)
118118 {
119119 const auto & posTrack = candidate.template posTrack_as <PIDTracks>();
@@ -176,7 +176,7 @@ struct pidStudies {
176176 v0.mAntiLambda () > massLambdaMin && v0.mAntiLambda () < massLambdaMax) {
177177 int matched = isMatched (v0);
178178 if (matched != 0 ) {
179- fillTree< true > (v0, matched);
179+ fillTree (v0, matched);
180180 }
181181 }
182182 }
@@ -189,7 +189,7 @@ struct pidStudies {
189189 if (v0.mK0Short () > massK0Min && v0.mK0Short () < massK0Max ||
190190 v0.mLambda () > massLambdaMin && v0.mLambda () < massLambdaMax ||
191191 v0.mAntiLambda () > massLambdaMin && v0.mAntiLambda () < massLambdaMax) {
192- fillTree< false > (v0, 0 );
192+ fillTree (v0, 0 );
193193 }
194194 }
195195 }
You can’t perform that action at this time.
0 commit comments