@@ -81,13 +81,8 @@ struct FemtoUniverseDebugV0 {
8181 void init (InitContext&)
8282 {
8383 eventHisto.init (&EventRegistry);
84- <<<<<<< Updated upstream
85- posChildHistos.init (&V0Registry, confChildTempFitVarpTBins, confChildTempFitVarBins, false , confPDGCodePositiveChild.value , true );
86- negChildHistos.init (&V0Registry, confChildTempFitVarpTBins, confChildTempFitVarBins, false , confPDGCodeNegativeChild, true );
87- =======
8884 positiveChildHistos.init (&V0Registry, confChildTempFitVarpTBins, confChildTempFitVarBins, false , confPDGCodePositiveChild.value , true );
8985 negativeChildHistos.init (&V0Registry, confChildTempFitVarpTBins, confChildTempFitVarBins, false , confPDGCodeNegativeChild, true );
90- >>>>>>> Stashed changes
9186 V0Histos.init (&V0Registry, confV0TempFitVarpTBins, confV0TempFitVarBins, false , confPDGCodeV0.value , true );
9287
9388 thetaRegistry.add (" Theta/hTheta" , " ; p (GeV/#it{c}); cos(#theta)" , kTH2F , {{100 , 0 , 10 }, {50 , -5 , 5 }});
@@ -110,21 +105,6 @@ struct FemtoUniverseDebugV0 {
110105 }
111106
112107 // Check cuts on V0 children
113- <<<<<<< Updated upstream
114- if (posChild.partType () == uint8_t (aod::femtouniverseparticle::ParticleType::kV0Child ) &&
115- negChild.partType () == uint8_t (aod::femtouniverseparticle::ParticleType::kV0Child ) &&
116- isFullPIDSelected (posChild.pidCut (), posChild.p (), 999 .f , confPositiveChildIndex.value , confChildnSpecies.value , confChildPIDnSigmaMax.value , confPositiveChildPIDnSigmaMax.value , 1 .f ) &&
117- isFullPIDSelected (negChild.pidCut (), negChild.p (), 999 .f , confNegativeChildIndex.value , confChildnSpecies.value , confChildPIDnSigmaMax.value , confNegativeChildPIDnSigmaMax.value , 1 .f )) {
118- auto pdgDB = TDatabasePDG::Instance ();
119- auto protonMass = pdgDB->GetParticle (confPDGCodePositiveChild)->Mass ();
120- auto pionMass = pdgDB->GetParticle (confPDGCodeNegativeChild)->Mass ();
121- auto protonBoosted = FemtoUniverseMath::boostPRF<decltype (posChild)>(posChild, protonMass, negChild, pionMass);
122- auto cosineTheta = (protonBoosted.Px () * part.px () + protonBoosted.Py () * part.py () + protonBoosted.Pz () * part.pz ()) / (protonBoosted.P () * part.p ());
123-
124- V0Histos.fillQA <false , true >(part);
125- posChildHistos.fillQA <false , true >(posChild);
126- negChildHistos.fillQA <false , true >(negChild);
127- =======
128108 if (positiveChild.partType () == uint8_t (aod::femtouniverseparticle::ParticleType::kV0Child ) &&
129109 negativeChild.partType () == uint8_t (aod::femtouniverseparticle::ParticleType::kV0Child ) &&
130110 isFullPIDSelected (positiveChild.pidCut (), positiveChild.p (), 999 .f , confPositiveChildIndex.value , confChildnSpecies.value , confChildPIDnSigmaMax.value , confPositiveChildPIDnSigmaMax.value , 1 .f ) &&
@@ -137,7 +117,6 @@ struct FemtoUniverseDebugV0 {
137117 V0Histos.fillQA <false , true >(part);
138118 positiveChildHistos.fillQA <false , true >(positiveChild);
139119 negativeChildHistos.fillQA <false , true >(negativeChild);
140- >>>>>>> Stashed changes
141120 thetaRegistry.fill (HIST (" Theta/hTheta" ), part.p (), cosineTheta);
142121 }
143122 }
0 commit comments