@@ -234,7 +234,7 @@ struct FwdMuonsUPC {
234234 // my track type
235235 // 0 = MCH-MID-MFT
236236 // 1 = MCH-MID
237- Configurable<int > myTrackType{" myTrackType" ,3 , " My track type" };
237+ Configurable<int > myTrackType{" myTrackType" , 3 , " My track type" };
238238
239239 void init (InitContext&)
240240 {
@@ -467,7 +467,7 @@ struct FwdMuonsUPC {
467467 float eta = p.Eta ();
468468 float pt = p.Pt ();
469469 float pDcaMax = rAbs < kRAbsMid ? kPDca1 : kPDca2 ;
470- LOGF (info," eta min = %f" ,kEtaMin );
470+ LOGF (info, " eta min = %f" , kEtaMin );
471471 if (eta < kEtaMin || eta > kEtaMax )
472472 return false ;
473473 if (pt < kPtMin )
@@ -539,17 +539,17 @@ struct FwdMuonsUPC {
539539 return ;
540540
541541 // MFT-MID match selection (if MFT is requested by the trackType)
542- if (myTrackType== 0 ) {
542+ if (myTrackType == 0 ) {
543543 // if MFT is requested check that the tracks is inside the MFT acceptance
544544 kEtaMin = -3.6 ;
545545 kEtaMax = -2.5 ;
546546
547547 int nMFT = 0 ;
548- if (tr1.chi2MatchMCHMFT () > 0 && tr1.chi2MatchMCHMFT () < 30 )
548+ if (tr1.chi2MatchMCHMFT () > 0 && tr1.chi2MatchMCHMFT () < 30 )
549549 nMFT++;
550- if (tr2.chi2MatchMCHMFT () > 0 && tr2.chi2MatchMCHMFT () < 30 )
550+ if (tr2.chi2MatchMCHMFT () > 0 && tr2.chi2MatchMCHMFT () < 30 )
551551 nMFT++;
552- if (nMFT != 2 )
552+ if (nMFT != 2 )
553553 return ;
554554 }
555555
@@ -782,17 +782,17 @@ struct FwdMuonsUPC {
782782 return ;
783783
784784 // MFT-MID match selection (if MFT is requested by the trackType)
785- if (myTrackType== 0 ) {
785+ if (myTrackType == 0 ) {
786786 // if MFT is requested check that the tracks is inside the MFT acceptance
787787 kEtaMin = -3.6 ;
788788 kEtaMax = -2.5 ;
789789
790790 int nMFT = 0 ;
791- if (tr1.chi2MatchMCHMFT () > 0 && tr1.chi2MatchMCHMFT () < 30 )
791+ if (tr1.chi2MatchMCHMFT () > 0 && tr1.chi2MatchMCHMFT () < 30 )
792792 nMFT++;
793- if (tr2.chi2MatchMCHMFT () > 0 && tr2.chi2MatchMCHMFT () < 30 )
793+ if (tr2.chi2MatchMCHMFT () > 0 && tr2.chi2MatchMCHMFT () < 30 )
794794 nMFT++;
795- if (nMFT != 2 )
795+ if (nMFT != 2 )
796796 return ;
797797 }
798798
0 commit comments