@@ -194,7 +194,7 @@ struct BjetTaggingGNN {
194194 using MCDSVTable = aod::MCDSecondaryVertex3Prongs;
195195
196196 template <typename AnyCollision, typename AnalysisJet, typename AnyTracks>
197- int analyzeJetTrackInfo (AnyCollision const & /* collision*/ , AnalysisJet const & analysisJet, AnyTracks const & /* allTracks*/ /* , int8_t jetFlavor = 0, double weight = 1.0*/ )
197+ int analyzeJetTrackInfo (AnyCollision const & /* collision*/ , AnalysisJet const & analysisJet, AnyTracks const & /* allTracks*/ /* , int8_t jetFlavor = 0, double weight = 1.0*/ )
198198 {
199199 int nTracks = 0 ;
200200 for (auto & constituent : analysisJet.template tracks_as <AnyTracks>()) {
@@ -211,7 +211,7 @@ struct BjetTaggingGNN {
211211 }
212212
213213 template <typename AnalysisJet, typename SecondaryVertices>
214- SecondaryVertices::iterator analyzeJetSVInfo (AnalysisJet const & analysisJet, SecondaryVertices const & allSVs, bool & checkSV/* , int8_t jetFlavor = 0, double weight = 1.0*/ )
214+ SecondaryVertices::iterator analyzeJetSVInfo (AnalysisJet const & analysisJet, SecondaryVertices const & allSVs, bool & checkSV /* , int8_t jetFlavor = 0, double weight = 1.0*/ )
215215 {
216216 using SVType = typename SecondaryVertices::iterator;
217217
@@ -332,7 +332,7 @@ struct BjetTaggingGNN {
332332
333333 int8_t jetFlavor = analysisJet.origin ();
334334
335- int nTracks = analyzeJetTrackInfo (collision, analysisJet, allTracks/* , jetFlavor, weight*/ );
335+ int nTracks = analyzeJetTrackInfo (collision, analysisJet, allTracks /* , jetFlavor, weight*/ );
336336
337337 int nNppTracks = 0 ;
338338 for (auto & constituent : analysisJet.template tracks_as <JetTracksMCDwID>()) {
@@ -347,7 +347,7 @@ struct BjetTaggingGNN {
347347
348348 bool checkSV;
349349 // auto sv = jettaggingutilities::jetFromProngMaxDecayLength<MCDSVTable>(analysisJet, prongChi2PCAMin, prongChi2PCAMax, prongsigmaLxyMax, prongIPxyMin, prongIPxyMax, false, &checkSV);
350- auto sv = analyzeJetSVInfo (analysisJet, allSVs, checkSV/* , jetFlavor, weight*/ );
350+ auto sv = analyzeJetSVInfo (analysisJet, allSVs, checkSV /* , jetFlavor, weight*/ );
351351
352352 if (checkSV) {
353353 mSV = sv.m ();
0 commit comments