]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/ITSSPDVertexDiamondda.cxx
Changing GetZv to GetZ
[u/mrichter/AliRoot.git] / ITS / ITSSPDVertexDiamondda.cxx
index 86298b225e88cdd91e8d0188337dfbe351837940..adb7e42b70b5d49f3464ae41e30714d81a5fe7b5 100644 (file)
@@ -1,24 +1,16 @@
 /*
 Contact: cvetan.cheshkov@cern.ch
-Link: missing
+Link: http://alisoft.cern.ch/viewvc/trunk/ITS/ITSSPDVertexDiamondda.cxx?root=AliRoot&view=log , /afs/cern.ch/user/c/cheshkov/public/ITS/VD_da_test.date , /afs/cern.ch/user/c/cheshkov/public/08000058338016.30.root.date.gz
+Reference Run: 58338
 Run Type: PHYSICS
 DA Type: MON
-Number of events needed: 10000
-Input Files:
-Output Files:
-Trigger types used: PHYSICS
-*/
-
-#define X_LIMIT 2.0
-#define Y_LIMIT 2.0
-#define Z_LIMIT 50.0
-#define X_DELTA 0.02
-#define Y_DELTA 0.02
-#define Z_DELTA 0.2
+Number of events needed: 100
+Input Files: GRP/Geometry/Data , ITS/Align/Data , spd_noisy_ocdb , spd_dead_ocdb , TRIGGER/SPD/PITConditions (all the files are taken from SPD daqDetDB)
+Output Files: SPDVertexDiamondDA.root
+Trigger types used: PHYSICS, SPD-F0 
+ */
+
 #define OUTPUT_FILE "SPDVertexDiamondDA.root"
-#define CDB_STORAGE "local://$ALICE_ROOT"
-#define N_EVENTS_AUTOSAVE 50
-#define NFITPARAMS 5
 
 extern "C" {
 #include "daqDA.h"
@@ -27,264 +19,372 @@ extern "C" {
 #include "event.h"
 #include "monitor.h"
 
-#include <TTree.h>
-#include <TH1.h>
-#include <TH2.h>
-#include <TF2.h>
-#include <TFile.h>
+#define ALI_AMORE 
+
+#ifdef ALI_AMORE
+#include <AmoreDA.h>
+//int amore::da::Updated(char const*) {}
+#endif
+
 #include <TPluginManager.h>
 #include <TROOT.h>
-#include <TFitter.h>
+#include <TH1.h>
+#include <TH2.h>
+#include <TPaveText.h>
+#include <TSystem.h>
+#include <TGeoGlobalMagField.h>
+#include <TTimeStamp.h>
 
+#include "AliLog.h"
+#include "AliMagF.h"
 #include "AliRawReaderDate.h"
-#include "AliGeomManager.h"
 #include "AliCDBManager.h"
-#include "AliESDVertex.h"
-#include "AliITSDetTypeRec.h"
-#include "AliITSInitGeometry.h"
-#include "AliITSVertexer3DTapan.h"
-
-TF2 *fitFcn = 0x0;
-
-AliESDVertex* FitVertexDiamond(TH2F *hXY, TH1F *hZ);
+#include "AliITSMeanVertexer.h"
+#include <cstdlib>
 
 int main(int argc, char **argv) {
 
-  gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
-                                       "*",
-                                       "TStreamerInfo",
-                                       "RIO",
-                                       "TStreamerInfo()"); 
-  TFitter *minuitFit = new TFitter(NFITPARAMS);
-  TVirtualFitter::SetFitter(minuitFit);
-
-  int status;
-  if (argc<2) {
-    printf("Wrong number of arguments\n");
-    return -1;
+ gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
+   "*",
+   "TStreamerInfo",
+   "RIO",
+   "TStreamerInfo()"); 
+
+ int status;
+ if (argc<2) {
+  printf("Wrong number of arguments\n");
+  return -1;
+ }
+ // get mean vertex quality cuts
+ status = daqDA_DB_getFile("ITSSPD_VertexQualityTuning_DA.config","./ITSSPD_VertexQualityTuning_DA.config");
+ if (status) {
+  printf("Failed to get config file (ITSSPD_VertexQualityTuning_DA.config) from DAQ DB, status=%d\n", status);
+  return -1;
+ }
+ /* open the config file and retrieve running parameters */
+ Float_t errX  = -1;
+ Float_t r     = -1;
+ UInt_t minClInner = 999 ;
+ UInt_t maxClInner = 999 ;
+ Int_t nEvFirstLoop = 0;
+ Int_t nEvAUTOSAVE = 0; 
+ Int_t zFiducialRegion=0;
+ Int_t timeWindowExport=0; 
+ Int_t timeErrWindowExport=0; 
+
+
+ char name[10][10];
+
+ FILE *fpConfig = fopen("ITSSPD_VertexQualityTuning_DA.config","r");
+ fscanf(fpConfig,"%s %f\n %s %f\n %s %d\n %s %d \n %s %d \n %s %d \n %s %d \n %s %d \n %s %d",&name[0], &errX, &name[1], &r, &name[2], &minClInner,&name[3], &maxClInner, &name[4],&nEvFirstLoop,&name[5],&nEvAUTOSAVE,&name[6],&zFiducialRegion, &name[7], &timeWindowExport, &name[8], &timeErrWindowExport);
+
+ fclose(fpConfig);
+
+ printf("\n\n Mean Vertex quality cuts : \n- errX = %f\n- r = %f\n- minSPD0 = %d maxSPD0 = %d\n- nEventsFirstLoop = %d nEventsAUTOSAVE = %d \n- zFiducialRegion = %d\n- timeWindowExport = %d \n- timeErrWindowExport = %d \n\n\n",errX,r,minClInner,maxClInner,nEvFirstLoop,nEvAUTOSAVE,zFiducialRegion, timeWindowExport, timeErrWindowExport);
+
+ /* define data source : this is argument 1 */  
+ status=monitorSetDataSource( argv[1] );
+ if (status!=0) {
+  printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
+  return -1;
+ }
+
+ /* declare monitoring program */
+ status=monitorDeclareMp( __FILE__ );
+ if (status!=0) {
+  printf("monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
+  return -1;
+ }
+
+ /* define wait event timeout - 1s max */
+ monitorSetNowait();
+ monitorSetNoWaitNetworkTimeout(1000);
+
+ /* log start of process */
+ printf("Vertex-Diamond SPD DA started\n");  
+
+ /* init some counters */
+ int nevents_with_vertex = 0;
+ int nevents_physics=0;
+ int nevents_total=0;
+
+ struct eventHeaderStruct *event;
+ eventTypeType eventT;
+
+ // Get run number
+ if (getenv("DATE_RUN_NUMBER")==0) {
+  printf("DATE_RUN_NUMBER not properly set.\n");
+  return -1;
+ }
+ int runNr = atoi(getenv("DATE_RUN_NUMBER"));
+
+ // Get the necessary OCDB files from the DAQ detector DB
+ if (gSystem->AccessPathName("localOCDB/GRP/Geometry/Data",kFileExists)) {
+  if (gSystem->mkdir("localOCDB/GRP/Geometry/Data",kTRUE) != 0) {
+   printf("Failed to create directory: localOCDB/GRP/Geometry/Data");
+   return -1;
   }
-
-  /* define data source : this is argument 1 */  
-  status=monitorSetDataSource( argv[1] );
-  if (status!=0) {
-    printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
-    return -1;
+ }
+ status = daqDA_DB_getFile("GRP/Geometry/Data","localOCDB/GRP/Geometry/Data/Run0_999999999_v0_s0.root");
+ if (status) {
+  printf("Failed to get geometry file (GRP/Geometry/Data) from DAQdetDB, status=%d\n", status);
+  return -1;
+ }
+
+ if (gSystem->AccessPathName("localOCDB/ITS/Align/Data",kFileExists)) {
+  if (gSystem->mkdir("localOCDB/ITS/Align/Data",kTRUE) != 0) {
+   printf("Failed to create directory: localOCDB/ITS/Align/Data");
+   return -1;
+  }
+ }
+ status = daqDA_DB_getFile("ITS/Align/Data","localOCDB/ITS/Align/Data/Run0_999999999_v0_s0.root");
+ if (status) {
+  printf("Failed to get its-alignment file (ITS/Align/Data) from DAQdetDB, status=%d\n", status);
+  return -1;
+ }
+
+ if (gSystem->AccessPathName("localOCDB/ITS/Calib/SPDNoisy",kFileExists)) {
+  if (gSystem->mkdir("localOCDB/ITS/Calib/SPDNoisy",kTRUE) != 0) {
+   printf("Failed to create directory: localOCDB/ITS/Calib/SPDNoisy");
+   return -1;
+  }
+ }
+ status = daqDA_DB_getFile("spd_noisy_ocdb","localOCDB/ITS/Calib/SPDNoisy/Run0_999999999_v0_s0.root");
+ if (status) {
+  printf("Failed to get spd file (spd_noisy_ocdb) from DAQdetDB, status=%d\n", status);
+  return -1;
+ }
+
+ if (gSystem->AccessPathName("localOCDB/ITS/Calib/SPDDead",kFileExists)) {
+  if (gSystem->mkdir("localOCDB/ITS/Calib/SPDDead",kTRUE) != 0) {
+   printf("Failed to create directory: localOCDB/ITS/Calib/SPDDead");
+   return -1;
+  }
+ }
+ status = daqDA_DB_getFile("spd_dead_ocdb","localOCDB/ITS/Calib/SPDDead/Run0_999999999_v0_s0.root");
+ if (status) {
+  printf("Failed to get spd file (spd_dead_ocdb) from DAQdetDB, status=%d\n", status);
+  return -1;
+ }
+
+ if (gSystem->AccessPathName("localOCDB/ITS/Calib/SPDSparseDead",kFileExists)) {
+  if (gSystem->mkdir("localOCDB/ITS/Calib/SPDSparseDead",kTRUE) != 0) {
+   printf("Failed to create directory: localOCDB/ITS/Calib/SPDSparseDead");
+   return -1;
+  }
+ }
+
+ status = daqDA_DB_getFile("spd_sparsedead_ocdb","localOCDB/ITS/Calib/SPDSparseDead/Run0_999999999_v0_s0.root");
+ if (status) {
+  printf("Failed to get spd file (spd_sparsedead_ocdb) from DAQdetDB, status=%d\n", status);
+  return -1;
+ }
+
+ if (gSystem->AccessPathName("localOCDB/TRIGGER/SPD/PITConditions",kFileExists)) {
+  if (gSystem->mkdir("localOCDB/TRIGGER/SPD/PITConditions",kTRUE) != 0) {
+   printf("Failed to create directory: localOCDB/TRIGGER/SPD/PITConditions");
+   return -1;
+  }
+ }
+ status = daqDA_DB_getFile("TRIGGER/SPD/PITConditions","localOCDB/TRIGGER/SPD/PITConditions/Run0_999999999_v0_s0.root");
+ if (status) {
+  printf("Failed to get spd trigger file (TRIGGER/SPD/PITConditions) from DAQdetDB, status=%d\n", status);
+  return -1;
+ }
+
+ status = daqDA_DB_getFile("mfchebKGI_sym.root","localOCDB/mfchebKGI_sym.root");
+ if (status) {
+  printf("Failed to get spd file (mfchebKGI_sym.root) from DAQdetDB, status=%d\n", status);
+  return -1;
+ }
+
+ // Global initializations
+
+ // The B filed is required in AliITSClusterFinderV2SPD
+ // for the Lorentz angle correction. B set to 0.      
+ TGeoGlobalMagField::Instance()->SetField(new AliMagF("Maps","Maps", 0., 0., AliMagF::k5kGUniform,AliMagF::kBeamTypeAA,-1,2,15,"localOCDB/mfchebKGI_sym.root"));  
+ AliLog::SetGlobalLogLevel(AliLog::kError);
+ AliCDBManager *man = AliCDBManager::Instance();
+ man->SetDefaultStorage("local://localOCDB");
+ man->SetRun(runNr);
+
+ // Init mean vertexer
+ AliITSMeanVertexer *mv = new AliITSMeanVertexer();
+
+ // Optionally change the Z fiducial region here (default +/- 40 cm
+  mv->SetZFiducialRegion(zFiducialRegion);
+
+ if (!mv->Init()) {
+  printf("Initialization of mean vertexer object failed ! Check the log for details");
+  return -1;
+ }
+
+ mv->SetCutOnErrX(errX);
+ mv->SetCutOnR(r);
+ mv->SetCutOnCls(minClInner,maxClInner);
+
+ gSystem->Exec(Form("rm %s",OUTPUT_FILE));
+
+ TTimeStamp *timeStamp;
+ timeStamp->Set();
+ Int_t t1 = timeStamp->GetSec(); 
+ Int_t t2=0; 
+
+// Initialization of AMORE sender
+#ifdef ALI_AMORE
+ amore::da::AmoreDA vtxAmore(amore::da::AmoreDA::kSender);
+#endif
+ Int_t amore_status = 0;
+ /* main loop (infinite) */
+ for(;;) {
+
+  /* check shutdown condition */
+  if (daqDA_checkShutdown()) {break;}
+
+  /* get next event (blocking call until timeout) */
+  status=monitorGetEventDynamic((void **)&event);
+  if (status==MON_ERR_EOF) {
+   printf ("End of File detected\n");
+   break; /* end of monitoring file has been reached */
   }
 
-  /* declare monitoring program */
-  status=monitorDeclareMp( __FILE__ );
   if (status!=0) {
-    printf("monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
-    return -1;
+   printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
+   break;
   }
 
-  /* define wait event timeout - 1s max */
-  monitorSetNowait();
-  monitorSetNoWaitNetworkTimeout(1000);
-  
-  /* log start of process */
-  printf("Vertex-Diamond SPD DA started\n");  
-
-  /* init some counters */
-  int nevents_with_vertex = 0;
-  int nevents_physics=0;
-  int nevents_total=0;
-
-  struct eventHeaderStruct *event;
-  eventTypeType eventT;
-
-  // Get run number
-  if (getenv("DATE_RUN_NUMBER")==0) {
-    printf("DATE_RUN_NUMBER not properly set.\n");
-    return -1;
+  /* retry if got no event */
+  if (event==NULL) {
+   continue;
   }
-  int runNr = atoi(getenv("DATE_RUN_NUMBER"));
-
-  // Histograms initialization
-  TH2F *hXY = new TH2F("hXY","Vertex Diamond (Y vs X)",
-                      2*(Int_t)(X_LIMIT/X_DELTA),-X_LIMIT,X_LIMIT,
-                      2*(Int_t)(Y_LIMIT/Y_DELTA),-Y_LIMIT,Y_LIMIT);
-  TH1F *hZ  = new TH1F("hZ"," Longitudinal Vertex Profile",
-                      2*(Int_t)(Z_LIMIT/Z_DELTA),-Z_LIMIT,Z_LIMIT);
-
-  // Global initializations
-  AliCDBManager *man = AliCDBManager::Instance();
-  man->SetDefaultStorage(CDB_STORAGE);
-  man->SetRun(runNr);
-  AliGeomManager::LoadGeometry("geometry.root");
-  AliGeomManager::ApplyAlignObjsFromCDB("ITS");
-
-  // ITS initializations
-  AliITSInitGeometry initgeom;
-  AliITSgeom *geom = initgeom.CreateAliITSgeom();
-  printf("Geometry name: %s\n",(initgeom.GetGeometryName()).Data());
-
-  AliITSDetTypeRec *detTypeRec = new AliITSDetTypeRec();
-  detTypeRec->SetITSgeom(geom);
-  detTypeRec->SetDefaults();
-  detTypeRec->SetDefaultClusterFindersV2(kTRUE);
-
-  /* main loop (infinite) */
-  for(;;) {
-    
-    /* check shutdown condition */
-    if (daqDA_checkShutdown()) {break;}
-    
-    /* get next event (blocking call until timeout) */
-    status=monitorGetEventDynamic((void **)&event);
-    if (status==MON_ERR_EOF) {
-      printf ("End of File detected\n");
-      break; /* end of monitoring file has been reached */
-    }
-    
-    if (status!=0) {
-      printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
-      break;
-    }
-    
-    /* retry if got no event */
-    if (event==NULL) {
-      continue;
-    }
 
-    nevents_total++;
-    eventT=event->eventType;
-    switch (event->eventType){
-      
-      /* START OF RUN */
-    case START_OF_RUN:
-      break;
-      /* END START OF RUN */
-      
-    /* END OF RUN */
-    case END_OF_RUN:
-      break;
-      
-    case PHYSICS_EVENT:
-      nevents_physics++;
-      AliRawReader *rawReader = new AliRawReaderDate((void*)event);
-
-      // Run SPD cluster finder
-      TTree* clustersTree = new TTree("TreeR", "Reconstructed Points Container"); //make a tree
-      detTypeRec->DigitsToRecPoints(rawReader,clustersTree,"SPD");
-
-      // Run vertex-finder
-      AliITSVertexer3DTapan *vertexer = new AliITSVertexer3DTapan(geom,1000);
-      vertexer->LoadClusters(clustersTree);
-      AliESDVertex *vtx = new AliESDVertex();
-      vertexer->FindVertexForCurrentEvent(vtx);
-
-      if (TMath::Abs(vtx->GetChi2()) < 0.1) {
-       // Fill the vertex into the histos
-       nevents_with_vertex++;
-       hXY->Fill(vtx->GetXv(),vtx->GetYv());
-       hZ->Fill(vtx->GetZv());
-
-       // Auto save
-       if ((nevents_with_vertex%N_EVENTS_AUTOSAVE) == 0) {
-         TFile outFile(OUTPUT_FILE, "update");
-         AliESDVertex *fitVtx = FitVertexDiamond(hXY,hZ);
-         if (fitVtx) {
-           fitVtx->Write(fitVtx->GetName(),TObject::kOverwrite);
-           TH1 *fithXY = fitFcn->CreateHistogram();
-           fithXY->Write(fithXY->GetName(),TObject::kOverwrite);
-           delete fithXY;
-         }
-         hXY->Write(hXY->GetName(),TObject::kOverwrite);
-         hZ->Write(hZ->GetName(),TObject::kOverwrite);
-         outFile.Close();
-         delete fitVtx;
-       }
-      }
+  nevents_total++;
+  eventT=event->eventType;
+  switch (event->eventType){
 
-      delete vtx;
-      delete vertexer;
+   /* START OF RUN */
+   case START_OF_RUN:
+    break;
+    /* END START OF RUN */
 
-      delete clustersTree;
-      delete rawReader;
+    /* END OF RUN */
+   case END_OF_RUN:
+    break;
+
+   case PHYSICS_EVENT:
+    nevents_physics++;
+    AliRawReader *rawReader = new AliRawReaderDate((void*)event);
+
+    // Run mean-vertexer reco
+    if (mv->Reconstruct(rawReader)) nevents_with_vertex++;
+    if(nevents_physics < nEvFirstLoop) continue;
+    // Auto save
+    if ((nevents_physics%nEvAUTOSAVE) == 0) {
+     TH2F *histo = ((TH2F*)mv->GetVertexXY());
+     histo->SetStats(kFALSE);
+     histo->SetTitle("");
+     histo->GetListOfFunctions()->SetOwner(kTRUE);
+     if(histo->GetListOfFunctions()->GetEntries()<1) histo->GetListOfFunctions()->Add(new TPaveText(-5,4.5,5.,6.2,"br"));
+     for(Int_t i=0; i<histo->GetListOfFunctions()->GetEntries(); i++){
+      TString funcName = histo->GetListOfFunctions()->At(i)->ClassName();
+      if(funcName.Contains("TPaveText")){
+       TPaveText *p = (TPaveText*)histo->GetListOfFunctions()->At(i);
+       p->Clear();
+       p->AddText(Form("%f events with vertex (%i out of %i processed events)",((Double_t)nevents_with_vertex)/((Double_t)nevents_physics),nevents_with_vertex,nevents_physics));
+       p->AddText(Form("%f events with good vertex (%i out of %i events with vertex)",histo->GetEntries()/((Double_t)nevents_with_vertex),(Int_t)histo->GetEntries(),nevents_with_vertex));
+      }
+     }
+     mv->WriteVertices(OUTPUT_FILE);
 
-    }
+     timeStamp->Set();
+     t2 = timeStamp->GetSec();
+     
+     
     
-    /* free resources */
-    free(event);
-    
-    /* exit when last event received, no need to wait for TERM signal */
-    if (eventT==END_OF_RUN) {
-      printf("EOR event detected\n");
-      break;
-    }
-  }
-  
-  if (detTypeRec) delete detTypeRec;
-
-  // Store the final histograms
-  TFile outFile(OUTPUT_FILE, "update");
-  if (nevents_with_vertex > N_EVENTS_AUTOSAVE) { 
-    // Fit XY & Z histograms
-    AliESDVertex *fitVtx = FitVertexDiamond(hXY,hZ);
-    if (fitVtx) {
-      fitVtx->Write(fitVtx->GetName(),TObject::kOverwrite);
-      TH1 *fithXY = fitFcn->CreateHistogram();
-      fithXY->Write(fithXY->GetName(),TObject::kOverwrite);
-      delete fithXY;
+#ifdef ALI_AMORE
+
+     if (TMath::Abs((t2-t1)-timeWindowExport) < timeErrWindowExport){
+       t1=t2;
+       // send the histos to AMORE pool
+       amore_status=vtxAmore.Send(mv->GetVertexXY()->GetName(),mv->GetVertexXY());
+       if(amore_status) printf("AMORE XY send status: %d\n",amore_status);
+       TH1D *hProj = mv->GetVertexXY()->ProjectionX();
+       amore_status=vtxAmore.Send(Form("%s_ProjX",mv->GetVertexXY()->GetName()),hProj); 
+       if(amore_status) printf("AMORE X send status: %d\n",amore_status);
+       if(hProj) delete hProj;
+       hProj = mv->GetVertexXY()->ProjectionY();
+       amore_status=vtxAmore.Send(Form("%s_ProjY",mv->GetVertexXY()->GetName()),hProj); 
+       if(amore_status) printf("AMORE Y send status: %d\n",amore_status);
+       if(hProj) hProj->Delete();
+       amore_status=vtxAmore.Send(mv->GetVertexZ()->GetName(),mv->GetVertexZ());
+       if(amore_status) printf("AMORE Z  send status: %d\n",amore_status);
+     }
+     if (TMath::Abs(t2-t1)> timeWindowExport) t1=t2;
+
+#endif
     }
-    delete fitVtx;
-  }
-  hXY->Write(hXY->GetName(),TObject::kOverwrite);
-  hZ->Write(hZ->GetName(),TObject::kOverwrite);
-  outFile.Close();
-
-  delete minuitFit;
-  TVirtualFitter::SetFitter(0);
-
-  /* write report */
-  printf("Run #%s, received %d events with vertex, out of %d physics and out of %d total events\n",getenv("DATE_RUN_NUMBER"),nevents_with_vertex,nevents_physics,nevents_total);
-
-  status=0;
 
-  /* export file to FXS */
-  if (daqDA_FES_storeFile(OUTPUT_FILE, "VertexDiamond")) {
-    status=-2;
+    delete rawReader;
   }
-  
-  return status;
-}
-
-Double_t fitFunction(Double_t *x, Double_t *par) {
 
-  Double_t t1 =   x[0] - par[1];
-  Double_t t2 =   x[1] - par[2];
+  /* free resources */
+  free(event);
 
-  return par[0]*TMath::Exp(-0.5*(t1*t1/(par[3]*par[3])+t2*t2/(par[4]*par[4])));
-}
-
-AliESDVertex* FitVertexDiamond(TH2F *hXY, TH1F *hZ)
-{
-
-  if (!fitFcn) {
-    fitFcn = new TF2("fitFcn",fitFunction,
-                    -X_LIMIT,X_LIMIT,
-                    -Y_LIMIT,Y_LIMIT,NFITPARAMS);
-    fitFcn->SetNpx(2*(Int_t)(X_LIMIT/X_DELTA));
-    fitFcn->SetNpy(2*(Int_t)(Y_LIMIT/Y_DELTA));
-    fitFcn->SetParameters(hXY->GetMaximum(),0,0,hXY->GetRMS(1),hXY->GetRMS(2));
-    fitFcn->Update();
+  /* exit when last event received, no need to wait for TERM signal */
+  if (eventT==END_OF_RUN) {
+   printf("EOR event detected\n");
+   break;
   }
-
-  if (hXY->Fit("fitFcn","L0V+") != 0) {
-    printf("XY fit failed!");
-    return 0x0;
+ }
+
+ TH2F *histo = ((TH2F*)mv->GetVertexXY());
+ histo->SetStats(kFALSE);
+ histo->SetTitle("");
+ histo->GetListOfFunctions()->SetOwner(kTRUE);
+ if(histo->GetListOfFunctions()->GetEntries()<1) histo->GetListOfFunctions()->Add(new TPaveText(-5,4.5,5.,6.2,"br"));
+ for(Int_t i=0; i<histo->GetListOfFunctions()->GetEntries(); i++){
+  TString funcName = histo->GetListOfFunctions()->At(i)->ClassName();
+  if(funcName.Contains("TPaveText")){
+   TPaveText *p = (TPaveText*)histo->GetListOfFunctions()->At(i);
+   p->Clear(); 
+   p->AddText(Form("%f events with vertex (%i out of %i processed events)",((Double_t)nevents_with_vertex)/((Double_t)nevents_physics),nevents_with_vertex,nevents_physics));
+   p->AddText(Form("%f events with good vertex (%i out of %i events with vertex)",histo->GetEntries()/((Double_t)nevents_with_vertex),(Int_t)histo->GetEntries(),nevents_with_vertex));
   }
-  
-  Double_t pos[3],poserr[3];
-  pos[0] = fitFcn->GetParameter(1);
-  pos[1] = fitFcn->GetParameter(2);
-  poserr[0] = fitFcn->GetParameter(3);
-  poserr[1] = fitFcn->GetParameter(4);
-
-  // Could be replaced by something more robust...
-  pos[2] = hZ->GetMean();
-  poserr[2] = hZ->GetRMS();
-  return new AliESDVertex(pos,poserr);
+ }
+ mv->WriteVertices(OUTPUT_FILE);
+
+#ifdef ALI_AMORE
+ if (TMath::Abs((t2-t1)-timeWindowExport) < timeErrWindowExport){
+       t1=t2;
+       // send the histos to AMORE pool
+       amore_status=vtxAmore.Send(mv->GetVertexXY()->GetName(),mv->GetVertexXY());  
+       if(amore_status) printf("AMORE XY send status: %d\n",amore_status);
+       TH1D *hProj = mv->GetVertexXY()->ProjectionX();
+       amore_status=vtxAmore.Send(Form("%s_ProjX",mv->GetVertexXY()->GetName()),hProj);
+       if(amore_status) printf("AMORE X send status: %d\n",amore_status);
+       if(hProj) delete hProj;
+       hProj = mv->GetVertexXY()->ProjectionY();
+       amore_status=vtxAmore.Send(Form("%s_ProjY",mv->GetVertexXY()->GetName()),hProj);
+       if(amore_status) printf("AMORE Y send status: %d\n",amore_status);
+       if(hProj) hProj->Delete();
+       amore_status=vtxAmore.Send(mv->GetVertexZ()->GetName(),mv->GetVertexZ());
+       if(amore_status) printf("AMORE Z  send status: %d\n",amore_status);
+ }
+ if (TMath::Abs(t2-t1)> timeWindowExport) t1=t2;
+
+#endif
+       
+ delete mv;
+
+ /* write report */
+ printf("Run #%s, received %d events with vertex, out of %d physics and out of %d total events\n",getenv("DATE_RUN_NUMBER"),nevents_with_vertex,nevents_physics,nevents_total);
+
+ status=0;
+
+ /* export file to FXS */
+ if (daqDA_FES_storeFile(OUTPUT_FILE, "VertexDiamond")) {
+  status=-2;
+ }
+
+ return status;
 }