]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
ATO-17 removed not used macros
authormivanov <marian.ivanov@cern.ch>
Mon, 30 Jun 2014 17:03:29 +0000 (19:03 +0200)
committermivanov <marian.ivanov@cern.ch>
Mon, 30 Jun 2014 17:03:29 +0000 (19:03 +0200)
test/testdEdx/aod.C [deleted file]
test/testdEdx/monrec.C [deleted file]
test/testdEdx/monsim.C [deleted file]

diff --git a/test/testdEdx/aod.C b/test/testdEdx/aod.C
deleted file mode 100644 (file)
index 911379c..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-void aod(){
-
-    gSystem->Load("libANALYSIS");
-    gSystem->Load("libANALYSISalice");
-    gSystem->Load("libCORRFW");
-    gSystem->Load("libPWGHFbase");
-    gSystem->Load("libPWGmuon");
-    gSystem->Load("libESDfilter");
-    gSystem->Load("libTENDER");
-    gSystem->Load("libPWGPP");
-
-    gROOT->Macro("${ALICE_ROOT}/STEER/CreateAODfromESD.C(\"AliESDs.root\",\"AliAOD.root\",\"local://$ALICE_ROOT/OCDB\",\"local://.\")");
-}
diff --git a/test/testdEdx/monrec.C b/test/testdEdx/monrec.C
deleted file mode 100644 (file)
index c6f1330..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-void monrec() {
-  // MonaLisa monitoring
-  gSystem->Load("libNet.so");
-  gSystem->Load("libMonaLisa.so");
-
-  new TMonaLisaWriter("aliendb3.cern.ch", "Reconstruction pp", gSystem->Getenv("TEST_PLATFORMID"), gSystem->Getenv("TEST_PLATFORMID"), "global");
-
-
-  gROOT->LoadMacro("rec.C");
-  rec();
-  if (gMonitoringWriter) gMonitoringWriter->SendProcessingProgress(1,1,kTRUE);  
-
-  // Send the size of the AliESDs.root file
-
-  FileStat_t buf;
-  gSystem->GetPathInfo("./AliESDs.root",buf);
-
-  TList *valuelist = new TList();
-  valuelist->SetOwner(kTRUE);
-
-  TMonaLisaValue* valdouble = new TMonaLisaValue("AliESDs.root size",buf.fSize);
-  valuelist->Add(valdouble);
-
-  if (gMonitoringWriter) gMonitoringWriter->SendParameters(valuelist);
-  delete valuelist;
-
-  printf("#Test finished successfully#\n");
-}
diff --git a/test/testdEdx/monsim.C b/test/testdEdx/monsim.C
deleted file mode 100644 (file)
index 4cf4348..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-void monsim(Int_t nev=20){ 
-  // Geant3 and Pythia
-  gSystem->Load("liblhapdf");
-  gSystem->Load("libEGPythia6");
-  gSystem->Load("libpythia6");
-  gSystem->Load("libAliPythia6");
-  gSystem->Load("libgeant321");
-  // MonaLisa monitoring
-  gSystem->Load("libNet.so");
-  gSystem->Load("libMonaLisa.so");
-
-  new TMonaLisaWriter("aliendb3.cern.ch", "Simulation pp", gSystem->Getenv("TEST_PLATFORMID"), gSystem->Getenv("TEST_PLATFORMID"), "global");
-
-  gROOT->LoadMacro("sim.C");
-  sim(nev);
-  if (gMonitoringWriter) gMonitoringWriter->SendProcessingProgress(1,1,kTRUE);  
-
-  // Send the size of the raw.root file
-
-  FileStat_t buf;
-  gSystem->GetPathInfo("./raw.root",buf);
-
-  TList *valuelist = new TList();
-  valuelist->SetOwner(kTRUE);
-
-  TMonaLisaValue* valdouble = new TMonaLisaValue("raw.root size",buf.fSize);
-  valuelist->Add(valdouble);
-
-  if (gMonitoringWriter) gMonitoringWriter->SendParameters(valuelist);
-  delete valuelist;
-
-  printf("#Test finished successfully#\n");
-}