]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fixing spelling
authorakisiel <akisiel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 20 Nov 2008 17:26:37 +0000 (17:26 +0000)
committerakisiel <akisiel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 20 Nov 2008 17:26:37 +0000 (17:26 +0000)
PWG2/FEMTOSCOPY/AliFemto/AliFemtoBasicEventCut.cxx
PWG2/FEMTOSCOPY/AliFemto/AliFemtoModelManager.cxx

index f636edde80f12e39210e98b6dee08b4c2dd94eb6..1ed07647c4e8ee9c54a6ecab9608153d91571133 100644 (file)
@@ -38,6 +38,7 @@ bool AliFemtoBasicEventCut::Pass(const AliFemtoEvent* event){
   double vertexZPos = event->PrimVertPos().z();
   cout << "AliFemtoBasicEventCut:: mult:       " << fEventMult[0] << " < " << mult << " < " << fEventMult[1] << endl;
   cout << "AliFemtoBasicEventCut:: VertexZPos: " << fVertZPos[0] << " < " << vertexZPos << " < " << fVertZPos[1] << endl;
+  cout << "AliFemtoBasicEventCut:: VertexZErr: " << event->PrimVertCov()[4] << endl;
   bool goodEvent =
     ((mult > fEventMult[0]) && 
      (mult < fEventMult[1]) && 
index 68862ed8966be57f91b781c51b765df44b9745cc..63aeab974186f44ca8f998d62fe5ac6512fcfe82 100644 (file)
@@ -72,9 +72,9 @@ Double_t AliFemtoModelManager::GetWeight(AliFemtoPair *aPair)
     cout << "No weight generator set! Cannot calculate weight" << endl;
     exit(0);
   }
-  // Return femtoscopic weight for a fiven pair
+  // Return femtoscopic weight for a given pair
   if (fCreateCopyHiddenInfo) {
-    // Try to gess particle masses and pid from the weight generator
+    // Try to guess particle masses and pid from the weight generator
     Double_t tMass1=0.0001, tMass2=0.0001;
     Int_t tPid1=0, tPid2=0;
     if (fWeightGenerator->GetPairType() == AliFemtoModelWeightGenerator::PionPlusPionPlus()) {