]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fixed problem with missing AliConfig while reading galice.root
authorbuncic <buncic@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 21 May 2001 17:22:52 +0000 (17:22 +0000)
committerbuncic <buncic@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 21 May 2001 17:22:52 +0000 (17:22 +0000)
ALIROOT/aliroot.cxx
STEER/AliConfig.cxx
STEER/AliConfig.h
STEER/AliDetector.cxx
STEER/AliRun.cxx
macros/Config.C
share/alirun

index 55906f90931aee28b3b985dca7843d1201332042..cd6381594584922d8d5b9feb247799d582425876 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
 
 /*
 $Log$
+Revision 1.5  2001/05/16 14:57:07  alibrary
+New files for folders and Stack
+
 Revision 1.4  2000/12/20 08:39:37  fca
 Support for Cerenkov and process list in Virtual MC
 
 Revision 1.4  2000/12/20 08:39:37  fca
 Support for Cerenkov and process list in Virtual MC
 
@@ -83,7 +86,7 @@ int main(int argc, char **argv)
   // in the event.
   
   // Create new configuration 
   // in the event.
   
   // Create new configuration 
-  new AliConfig ("Folders","Alice data exchange");
+  new AliConfig ();
   
   new AliRun("gAlice","The ALICE Off-line Simulation Framework");
     
   
   new AliRun("gAlice","The ALICE Off-line Simulation Framework");
     
index 6b7ab54f274a4ec983ef74e67f3541a6c7c257c4..3fd0491694f80ebd5f2ee2678bc4df26f175f49d 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
 
 /*
 $Log$
+Revision 1.1  2001/05/16 14:57:22  alibrary
+New files for folders and Stack
+
 */
 
 #include "TString.h"
 */
 
 #include "TString.h"
@@ -53,7 +56,7 @@ AliConfig* AliConfig::Instance ()
   // Instance method for singleton class
   //
         if(fInstance == 0) {
   // Instance method for singleton class
   //
         if(fInstance == 0) {
-                   fInstance = new AliConfig ();
+                   fInstance = new AliConfig ("Folders","Alice data exchange");
                }
                return fInstance;
 }
                }
                return fInstance;
 }
index a6dd5001ec72c6ce6c456e1fd3257fa96ef4e4d6..31e690b96484721ac826efed0881cb45da6731d2 100644 (file)
@@ -5,7 +5,10 @@
 
 /* $Id$ */
 /* 
 
 /* $Id$ */
 /* 
- * $Log$ 
+ * $Log$
+ * Revision 1.1  2001/05/16 14:57:22  alibrary
+ * New files for folders and Stack
+ * 
  */
 
 #include <TFolder.h>
  */
 
 #include <TFolder.h>
@@ -50,8 +53,7 @@ class AliConfig : public TNamed {
 
     static AliConfig*  fInstance;
     
 
     static AliConfig*  fInstance;
     
-    ClassDef(AliConfig,1) 
-
+    ClassDef(AliConfig,1) //Configuration class for AliRun
 };                             // end class AliConfig
 
 #endif
 };                             // end class AliConfig
 
 #endif
index 11d097e560741427e7edb31a945ccb275e4eee4b..a7661972bff745371c1a6d815b4686079d081b41 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
 
 /*
 $Log$
+Revision 1.13  2001/05/16 14:57:22  alibrary
+New files for folders and Stack
+
 Revision 1.12  2001/03/12 17:47:03  hristov
 Changes needed on Sun with CC 5.0
 
 Revision 1.12  2001/03/12 17:47:03  hristov
 Changes needed on Sun with CC 5.0
 
@@ -149,23 +152,25 @@ void AliDetector::Publish(const char *dir, void *address, const char *name)
   // Register pointer to detector objects. 
   // 
   TFolder *topFolder = (TFolder *)gROOT->FindObjectAny("/Folders");
   // Register pointer to detector objects. 
   // 
   TFolder *topFolder = (TFolder *)gROOT->FindObjectAny("/Folders");
-  TFolder *folder = (TFolder *)topFolder->FindObjectAny(dir);
-  // TFolder *folder = (TFolder *)gROOT->FindObjectAny(dir);
-  if (!folder)  {
-    cerr << "Cannot register: Missing folder: " << dir << endl;
-  } else {
-    TFolder *subfolder = (TFolder *) folder->FindObjectAny(this->GetName()); 
-
-    if(!subfolder)
-       subfolder = folder->AddFolder(this->GetName(),this->GetTitle());
-    if (address) {
-      TObject **obj = (TObject **) address;
-      if ((*obj)->InheritsFrom(TCollection::Class())) {
-         TCollection *collection = (TCollection *) (*obj); 
-         if (name)
-           collection->SetName(name);
+  if  (topFolder) { 
+    TFolder *folder = (TFolder *)topFolder->FindObjectAny(dir);
+    // TFolder *folder = (TFolder *)gROOT->FindObjectAny(dir);
+    if (!folder)  {
+      cerr << "Cannot register: Missing folder: " << dir << endl;
+    } else {
+      TFolder *subfolder = (TFolder *) folder->FindObjectAny(this->GetName()); 
+
+      if(!subfolder)
+         subfolder = folder->AddFolder(this->GetName(),this->GetTitle());
+      if (address) {
+        TObject **obj = (TObject **) address;
+        if ((*obj)->InheritsFrom(TCollection::Class())) {
+           TCollection *collection = (TCollection *) (*obj); 
+           if (name)
+             collection->SetName(name);
+        } 
+        subfolder->Add(*obj);
       } 
       } 
-      subfolder->Add(*obj);
     }  
   }
 }
     }  
   }
 }
index 7e9c6b53e0bb4408a57d5e1cf81aa81a9a7fa8e5..1e0d8ecf8d8bdbfc33dd86f51d935c3481c1bc00 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
 
 /*
 $Log$
+Revision 1.64  2001/05/16 14:57:22  alibrary
+New files for folders and Stack
+
 Revision 1.62  2001/04/06 11:12:33  morsch
 Clear fParticles after each event. (Ivana Hrivnacova)
 
 Revision 1.62  2001/04/06 11:12:33  morsch
 Clear fParticles after each event. (Ivana Hrivnacova)
 
@@ -639,7 +642,7 @@ void AliRun::FinishRun()
   
   // Write AliRun info and all detectors parameters
   Write(0,TObject::kOverwrite);
   
   // Write AliRun info and all detectors parameters
   Write(0,TObject::kOverwrite);
-  
+
   // Clean tree information
 
   fStack->FinishRun();
   // Clean tree information
 
   fStack->FinishRun();
@@ -962,6 +965,7 @@ void AliRun::InitMC(const char *setup)
 
    fMCQA = new AliMCQA(fNdets);
 
 
    fMCQA = new AliMCQA(fNdets);
 
+   AliConfig *config = AliConfig::Instance();
    //
    // Save stuff at the beginning of the file to avoid file corruption
    Write();
    //
    // Save stuff at the beginning of the file to avoid file corruption
    Write();
index 2ae5752eb8378b38f4ac382907175dea346198c4..d4ec92aea48139106b2947ee97b486b4be42fc84 100644 (file)
 void Config()
 {
 void Config()
 {
-  // 7-DEC-2000 09:00
-  // Switch on Transition Radiation simulation. 6/12/00 18:00
-  // iZDC=1  7/12/00 09:00
-  // ThetaRange is (0., 180.). It was (0.28,179.72) 7/12/00 09:00
-  
-  new AliGeant3("C++ Interface to Geant3");
-
-  if (!gSystem->Getenv("CONFIG_FILE")) {
-    TFile *rootfile = new TFile("galice.root","recreate"); 
-    rootfile->SetCompressionLevel(2);
-  }
-
-  TGeant3 *geant3 = (TGeant3*)gMC;
-  //
-  // Set External decayer
-  AliDecayer* decayer = new AliDecayerPythia();
-  decayer->SetForceDecay(kAll);
-  decayer->Init();
-  gMC->SetExternalDecayer(decayer);
-  //
-  //
-  //=======================================================================
-  // ******* GEANT STEERING parameters FOR ALICE SIMULATION *******
-  geant3->SetTRIG(1); //Number of events to be processed 
-  geant3->SetSWIT(4,10);
-  geant3->SetDEBU(0,0,1);
-  //geant3->SetSWIT(2,2);
-  geant3->SetDCAY(1);
-  geant3->SetPAIR(1);
-  geant3->SetCOMP(1);
-  geant3->SetPHOT(1);
-  geant3->SetPFIS(0);
-  geant3->SetDRAY(0);
-  geant3->SetANNI(1);
-  geant3->SetBREM(1);
-  geant3->SetMUNU(1);
-  geant3->SetCKOV(1);
-  geant3->SetHADR(1); //Select pure GEANH (HADR 1) or GEANH/NUCRIN (HADR 3)
-  geant3->SetLOSS(2);
-  geant3->SetMULS(1);
-  geant3->SetRAYL(1);
-  geant3->SetAUTO(1); //Select automatic STMIN etc... calc. (AUTO 1) or manual (AUTO 0)
-  geant3->SetABAN(0); //Restore 3.16 behaviour for abandoned tracks
-  geant3->SetOPTI(2); //Select optimisation level for GEANT geometry searches (0,1,2)
-  geant3->SetERAN(5.e-7);
-
-  Float_t cut    = 1.e-3; // 1MeV cut by default
-  Float_t tofmax = 1.e10;
-  //             GAM ELEC NHAD CHAD MUON EBREM MUHAB EDEL MUDEL MUPA TOFMAX
-  geant3->SetCUTS(cut,cut, cut, cut, cut, cut,  cut,  cut, cut,  cut, tofmax);
-  //
-  //=======================================================================
-  // ************* STEERING parameters FOR ALICE SIMULATION **************
-  // --- Specify event type to be tracked through the ALICE setup
-  // --- All positions are in cm, angles in degrees, and P and E in GeV
-  if (gSystem->Getenv("CONFIG_NPARTICLES")) {
-    int nParticles = atoi(gSystem->Getenv("CONFIG_NPARTICLES"));
-  } else { 
-    int nParticles = 50; 
-  }  
-  AliGenHIJINGpara *gener = new AliGenHIJINGpara(nParticles);
-
-  gener->SetMomentumRange(0,999);
-  gener->SetPhiRange(0,360);
-  //  gener->SetThetaRange(0.28,179.72);
-  gener->SetThetaRange(0.,180.);
-  gener->SetOrigin(0,0,0);        //vertex position
-  gener->SetSigma(0,0,0);         //Sigma in (X,Y,Z) (cm) on IP position
-  gener->Init();
-  // 
-  // Activate this line if you want the vertex smearing to happen
-  // track by track
-  //
-  //gener->SetVertexSmear(perTrack); 
-
-  gAlice->SetField(-999,2);    //Specify maximum magnetic field in Tesla (neg. ==> default field)
-
-  Int_t iABSO=1;
-  Int_t iCASTOR=1;
-  Int_t iDIPO=1;
-  Int_t iFMD=1;
-  Int_t iFRAME=1;
-  Int_t iHALL=1;
-  Int_t iITS=1;
-  Int_t iMAG=1;
-  Int_t iMUON=1;
-  Int_t iPHOS=1;
-  Int_t iPIPE=1;
-  Int_t iPMD=1;
-  Int_t iRICH=1;
-  Int_t iSHIL=1;
-  Int_t iSTART=1;
-  Int_t iTOF=1;
-  Int_t iTPC=1;
-  Int_t iTRD=1;
-  Int_t iZDC=1;
-
-  //=================== Alice BODY parameters =============================
-  AliBODY *BODY = new AliBODY("BODY","Alice envelop");
-
-
-  if(iMAG) {
-    //=================== MAG parameters ============================
-    // --- Start with Magnet since detector layouts may be depending ---
-    // --- on the selected Magnet dimensions ---
-    AliMAG *MAG  = new AliMAG("MAG","Magnet");
-  }
-
-
-  if(iABSO) {
-    //=================== ABSO parameters ============================
-    AliABSO *ABSO  = new AliABSOv0("ABSO","Muon Absorber");
-  }
-
-  if(iDIPO) {
-    //=================== DIPO parameters ============================
-
-    AliDIPO *DIPO  = new AliDIPOv2("DIPO","Dipole version 2");
-  }
-
-  if(iHALL) {
-    //=================== HALL parameters ============================
-
-    AliHALL *HALL  = new AliHALL("HALL","Alice Hall");
-  }
-
-
-  if(iFRAME) {
-    //=================== FRAME parameters ============================
-
-    AliFRAME *FRAME  = new AliFRAMEv2("FRAME","Space Frame");
-
-  }
-
-  if(iSHIL) {
-    //=================== SHIL parameters ============================
-
-    AliSHIL *SHIL  = new AliSHILv0("SHIL","Shielding");
-  }
-
-
-  if(iPIPE) {
-    //=================== PIPE parameters ============================
-
-    AliPIPE *PIPE  = new AliPIPEv0("PIPE","Beam Pipe");
-  }
-
-  if(iITS) {
+    // 7-DEC-2000 09:00
+    // Switch on Transition Radiation simulation. 6/12/00 18:00
+    // iZDC=1  7/12/00 09:00
+    // ThetaRange is (0., 180.). It was (0.28,179.72) 7/12/00 09:00
+
+    // Set Random Number seed
+    // gRandom->SetSeed(12345);
+
+    new     AliGeant3("C++ Interface to Geant3");
+
+    if (!gSystem->Getenv("CONFIG_FILE"))
+    {
+        TFile  *rootfile = new TFile("galice.root", "recreate");
+
+        rootfile->SetCompressionLevel(2);
+    }
+
+    TGeant3 *geant3 = (TGeant3 *) gMC;
 
 
-//=================== ITS parameters ============================
-    //
-    // As the innermost detector in ALICE, the Inner Tracking System "impacts" on
-    // almost all other detectors. This involves the fact that the ITS geometry
-    // still has several options to be followed in parallel in order to determine
-    // the best set-up which minimizes the induced background. All the geometries
-    // available to date are described in the following. Read carefully the comments
-    // and use the default version (the only one uncommented) unless you are making
-    // comparisons and you know what you are doing. In this case just uncomment the
-    // ITS geometry you want to use and run Aliroot.
-    //
-    // Detailed geometries:         
-    //
-    //
-    //
-    //AliITS *ITS  = new AliITSv5symm("ITS","Updated ITS TDR detailed version with symmetric services");
-    //
-    AliITS *ITS  = new AliITSv5asymm("ITS","Updates ITS TDR detailed version with asymmetric services");
-    //
-    //AliITSvPPRasymm *ITS  = new AliITSvPPRasymm("ITS","New ITS PPR detailed version with asymmetric services");
-    //ITS->SetMinorVersion(2);
-    //ITS->SetReadDet(kFALSE);
-    //ITS->SetWriteDet("$ALICE_ROOT/ITS/ITSgeometry_vPPRasymm2.det");
-    //ITS->SetThicknessDet1(300.);   // detector thickness on layer 1 must be in the range [100,300]
-    //ITS->SetThicknessDet2(300.);   // detector thickness on layer 2 must be in the range [100,300]
-    //ITS->SetThicknessChip1(300.);  // chip thickness on layer 1 must be in the range [150,300]
-    //ITS->SetThicknessChip2(300.);  // chip thickness on layer 2 must be in the range [150,300]
-    //ITS->SetRails(1);                   // 1 --> rails in ; 0 --> rails out
-    //ITS->SetCoolingFluid(1);    // 1 --> water ; 0 --> freon
-    //
-    //AliITSvPPRsymm *ITS  = new AliITSvPPRsymm("ITS","New ITS PPR detailed version with symmetric services");
-    //ITS->SetMinorVersion(2);                                      
-    //ITS->SetReadDet(kFALSE);
-    //ITS->SetWriteDet("$ALICE_ROOT/ITS/ITSgeometry_vPPRsymm2.det");
-    //ITS->SetThicknessDet1(300.);   // detector thickness on layer 1 must be in the range [100,300]
-    //ITS->SetThicknessDet2(300.);   // detector thickness on layer 2 must be in the range [100,300]
-    //ITS->SetThicknessChip1(300.);  // chip thickness on layer 1 must be in the range [150,300]
-    //ITS->SetThicknessChip2(300.);  // chip thickness on layer 2 must be in the range [150,300]
-    //ITS->SetRails(1);              // 1 --> rails in ; 0 --> rails out
-    //ITS->SetCoolingFluid(1);       // 1 --> water ; 0 --> freon
-    //
-    //
-    // Coarse geometries (warning: no hits are produced with these coarse geometries and they unuseful 
-    // for reconstruction !):
-    //                                                     
-    //
-    //
-    //AliITSvPPRcoarseasymm *ITS  = new AliITSvPPRcoarseasymm("ITS","New ITS coarse version with asymmetric services");
-    //ITS->SetRails(1);                // 1 --> rails in ; 0 --> rails out
-    //ITS->SetSupportMaterial(0);      // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon
-    //
-    //AliITS *ITS  = new AliITSvPPRcoarsesymm("ITS","New ITS coarse version with symmetric services");
-    //ITS->SetRails(1);                // 1 --> rails in ; 0 --> rails out
-    //ITS->SetSupportMaterial(0);      // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon
-    //                      
-    //
     //
     //
-    // Geant3 <-> EUCLID conversion
-    // ============================
+    // Set External decayer
+    AliDecayer *decayer = new AliDecayerPythia();
+
+    decayer->SetForceDecay(kAll);
+    decayer->Init();
+    gMC->SetExternalDecayer(decayer);
     //
     //
-    // SetEUCLID is a flag to output (=1) or not to output (=0) both geometry and
-    // media to two ASCII files (called by default ITSgeometry.euc and
-    // ITSgeometry.tme) in a format understandable to the CAD system EUCLID.
-    // The default (=0) means that you dont want to use this facility.
     //
     //
-    ITS->SetEUCLID(0);  
-  }
-  
-  if(iTPC) {
-    //============================ TPC parameters ================================
-    // --- This allows the user to specify sectors for the SLOW (TPC geometry 2)
-    // --- Simulator. SecAL (SecAU) <0 means that ALL lower (upper)
-    // --- sectors are specified, any value other than that requires at least one 
-    // --- sector (lower or upper)to be specified!
-    // --- Reminder: sectors 1-24 are lower sectors (1-12 -> z>0, 13-24 -> z<0)
-    // ---           sectors 25-72 are the upper ones (25-48 -> z>0, 49-72 -> z<0)
-    // --- SecLows - number of lower sectors specified (up to 6)
-    // --- SecUps - number of upper sectors specified (up to 12)
-    // --- Sens - sensitive strips for the Slow Simulator !!!
-    // --- This does NOT work if all S or L-sectors are specified, i.e.
-    // --- if SecAL or SecAU < 0
+    //=======================================================================
+    // ******* GEANT STEERING parameters FOR ALICE SIMULATION *******
+    geant3->SetTRIG(1);         //Number of events to be processed 
+    geant3->SetSWIT(4, 10);
+    geant3->SetDEBU(0, 0, 1);
+    //geant3->SetSWIT(2,2);
+    geant3->SetDCAY(1);
+    geant3->SetPAIR(1);
+    geant3->SetCOMP(1);
+    geant3->SetPHOT(1);
+    geant3->SetPFIS(0);
+    geant3->SetDRAY(0);
+    geant3->SetANNI(1);
+    geant3->SetBREM(1);
+    geant3->SetMUNU(1);
+    geant3->SetCKOV(1);
+    geant3->SetHADR(1);         //Select pure GEANH (HADR 1) or GEANH/NUCRIN (HADR 3)
+    geant3->SetLOSS(2);
+    geant3->SetMULS(1);
+    geant3->SetRAYL(1);
+    geant3->SetAUTO(1);         //Select automatic STMIN etc... calc. (AUTO 1) or manual (AUTO 0)
+    geant3->SetABAN(0);         //Restore 3.16 behaviour for abandoned tracks
+    geant3->SetOPTI(2);         //Select optimisation level for GEANT geometry searches (0,1,2)
+    geant3->SetERAN(5.e-7);
+
+    Float_t cut = 1.e-3;        // 1MeV cut by default
+    Float_t tofmax = 1.e10;
+
+    //             GAM ELEC NHAD CHAD MUON EBREM MUHAB EDEL MUDEL MUPA TOFMAX
+    geant3->SetCUTS(cut, cut, cut, cut, cut, cut, cut, cut, cut, cut,
+                    tofmax);
     //
     //
+    //=======================================================================
+    // ************* STEERING parameters FOR ALICE SIMULATION **************
+    // --- Specify event type to be tracked through the ALICE setup
+    // --- All positions are in cm, angles in degrees, and P and E in GeV
+    if (gSystem->Getenv("CONFIG_NPARTICLES"))
+    {
+        int     nParticles = atoi(gSystem->Getenv("CONFIG_NPARTICLES"));
+    } else
+    {
+        int     nParticles = 50;
+    }
+    AliGenHIJINGpara *gener = new AliGenHIJINGpara(nParticles);
+
+    gener->SetMomentumRange(0, 999);
+    gener->SetPhiRange(0, 360);
+    //  gener->SetThetaRange(0.28,179.72);
+    gener->SetThetaRange(0., 180.);
+    gener->SetOrigin(0, 0, 0);  //vertex position
+    gener->SetSigma(0, 0, 0);   //Sigma in (X,Y,Z) (cm) on IP position
+    gener->Init();
+    // 
+    // Activate this line if you want the vertex smearing to happen
+    // track by track
     //
     //
-    //-----------------------------------------------------------------------------
+    //gener->SetVertexSmear(perTrack); 
 
 
-    //  gROOT->LoadMacro("SetTPCParam.C");
-    //  AliTPCParam *param = SetTPCParam();
-    AliTPC *TPC  = new AliTPCv2("TPC","Default");
-    // All sectors included 
-    TPC->SetSecAL(-1);
-    TPC->SetSecAU(-1);
+    gAlice->SetField(-999, 2);  //Specify maximum magnetic field in Tesla (neg. ==> default field)
 
 
-  }
+    Int_t   iABSO = 1;
+    Int_t   iCASTOR = 1;
+    Int_t   iDIPO = 1;
+    Int_t   iFMD = 1;
+    Int_t   iFRAME = 1;
+    Int_t   iHALL = 1;
+    Int_t   iITS = 1;
+    Int_t   iMAG = 1;
+    Int_t   iMUON = 1;
+    Int_t   iPHOS = 1;
+    Int_t   iPIPE = 1;
+    Int_t   iPMD = 1;
+    Int_t   iRICH = 1;
+    Int_t   iSHIL = 1;
+    Int_t   iSTART = 1;
+    Int_t   iTOF = 1;
+    Int_t   iTPC = 1;
+    Int_t   iTRD = 1;
+    Int_t   iZDC = 1;
 
 
-  if(iTOF) {
-    //=================== TOF parameters ============================
-    AliTOF *TOF  = new AliTOFv2("TOF","normal TOF");
-  }
+    //=================== Alice BODY parameters =============================
+    AliBODY *BODY = new AliBODY("BODY", "Alice envelop");
 
 
-  if(iRICH) {
-    //=================== RICH parameters ===========================
-    AliRICH *RICH  = new AliRICHv1("RICH","normal RICH");
-    
-  }
 
 
+    if (iMAG)
+    {
+        //=================== MAG parameters ============================
+        // --- Start with Magnet since detector layouts may be depending ---
+        // --- on the selected Magnet dimensions ---
+        AliMAG *MAG = new AliMAG("MAG", "Magnet");
+    }
 
 
-  if(iZDC) {
-    //=================== ZDC parameters ============================
 
 
-    AliZDC *ZDC  = new AliZDCv1("ZDC","normal ZDC");
-  }
+    if (iABSO)
+    {
+        //=================== ABSO parameters ============================
+        AliABSO *ABSO = new AliABSOv0("ABSO", "Muon Absorber");
+    }
 
 
-  if(iCASTOR) {
-    //=================== CASTOR parameters ============================
+    if (iDIPO)
+    {
+        //=================== DIPO parameters ============================
 
 
-    AliCASTOR *CASTOR  = new AliCASTORv1("CASTOR","normal CASTOR");
-  }
+        AliDIPO *DIPO = new AliDIPOv2("DIPO", "Dipole version 2");
+    }
 
 
-  if(iTRD) {
-    //=================== TRD parameters ============================
-  
-    AliTRD *TRD  = new AliTRDv1("TRD","TRD slow simulator");
-  
-    // Select the gas mixture (0: 97% Xe + 3% isobutane, 1: 90% Xe + 10% CO2)
-    TRD->SetGasMix(1);
-  
-    // With hole in front of PHOS
-    TRD->SetPHOShole();
-    // With hole in front of RICH
-    TRD->SetRICHhole();
-    // Switch on TR
-    AliTRDsim *TRDsim = TRD->CreateTR();
-  }
+    if (iHALL)
+    {
+        //=================== HALL parameters ============================
 
 
-  if(iFMD) {
-    //=================== FMD parameters ============================
+        AliHALL *HALL = new AliHALL("HALL", "Alice Hall");
+    }
 
 
-    AliFMD *FMD  = new AliFMDv0("FMD","normal FMD");
-  }
 
 
-  if(iMUON) {
-    //=================== MUON parameters ===========================
+    if (iFRAME)
+    {
+        //=================== FRAME parameters ============================
 
 
-    AliMUON *MUON  = new AliMUONv1("MUON","default");
-  }
-  //=================== PHOS parameters ===========================
+        AliFRAME *FRAME = new AliFRAMEv2("FRAME", "Space Frame");
 
 
-  if(iPHOS) {
-    AliPHOS *PHOS  = new AliPHOSv1("PHOS","GPS2");
-  }
+    }
 
 
+    if (iSHIL)
+    {
+        //=================== SHIL parameters ============================
 
 
-  if(iPMD) {
-    //=================== PMD parameters ============================
+        AliSHIL *SHIL = new AliSHILv0("SHIL", "Shielding");
+    }
 
 
-    AliPMD *PMD  = new AliPMDv1("PMD","normal PMD");
-    PMD->SetPAR(1., 1., 0.8, 0.02);
-    PMD->SetIN(6., 18., -580., 27., 27.);
-    PMD->SetGEO(0.0, 0.2, 4.);
-    PMD->SetPadSize(0.8, 1.0, 1.0, 1.5);
 
 
-  }
+    if (iPIPE)
+    {
+        //=================== PIPE parameters ============================
 
 
-  if(iSTART) {
-    //=================== START parameters ============================
-    AliSTART *START  = new AliSTARTv1("START","START Detector");
-  }
+        AliPIPE *PIPE = new AliPIPEv0("PIPE", "Beam Pipe");
+    }
 
 
-         
-}
+    if (iITS)
+    {
 
 
+//=================== ITS parameters ============================
+        //
+        // As the innermost detector in ALICE, the Inner Tracking System "impacts" on
+        // almost all other detectors. This involves the fact that the ITS geometry
+        // still has several options to be followed in parallel in order to determine
+        // the best set-up which minimizes the induced background. All the geometries
+        // available to date are described in the following. Read carefully the comments
+        // and use the default version (the only one uncommented) unless you are making
+        // comparisons and you know what you are doing. In this case just uncomment the
+        // ITS geometry you want to use and run Aliroot.
+        //
+        // Detailed geometries:         
+        //
+        //
+        //
+        //AliITS *ITS  = new AliITSv5symm("ITS","Updated ITS TDR detailed version with symmetric services");
+        //
+        AliITS *ITS =
+            new AliITSv5asymm("ITS",
+                              "Updates ITS TDR detailed version with asymmetric services");
+        //
+        //AliITSvPPRasymm *ITS  = new AliITSvPPRasymm("ITS","New ITS PPR detailed version with asymmetric services");
+        //ITS->SetMinorVersion(2);
+        //ITS->SetReadDet(kFALSE);
+        //ITS->SetWriteDet("$ALICE_ROOT/ITS/ITSgeometry_vPPRasymm2.det");
+        //ITS->SetThicknessDet1(300.);   // detector thickness on layer 1 must be in the range [100,300]
+        //ITS->SetThicknessDet2(300.);   // detector thickness on layer 2 must be in the range [100,300]
+        //ITS->SetThicknessChip1(300.);  // chip thickness on layer 1 must be in the range [150,300]
+        //ITS->SetThicknessChip2(300.);  // chip thickness on layer 2 must be in the range [150,300]
+        //ITS->SetRails(1);            // 1 --> rails in ; 0 --> rails out
+        //ITS->SetCoolingFluid(1);     // 1 --> water ; 0 --> freon
+        //
+        //AliITSvPPRsymm *ITS  = new AliITSvPPRsymm("ITS","New ITS PPR detailed version with symmetric services");
+        //ITS->SetMinorVersion(2);                                      
+        //ITS->SetReadDet(kFALSE);
+        //ITS->SetWriteDet("$ALICE_ROOT/ITS/ITSgeometry_vPPRsymm2.det");
+        //ITS->SetThicknessDet1(300.);   // detector thickness on layer 1 must be in the range [100,300]
+        //ITS->SetThicknessDet2(300.);   // detector thickness on layer 2 must be in the range [100,300]
+        //ITS->SetThicknessChip1(300.);  // chip thickness on layer 1 must be in the range [150,300]
+        //ITS->SetThicknessChip2(300.);  // chip thickness on layer 2 must be in the range [150,300]
+        //ITS->SetRails(1);              // 1 --> rails in ; 0 --> rails out
+        //ITS->SetCoolingFluid(1);       // 1 --> water ; 0 --> freon
+        //
+        //
+        // Coarse geometries (warning: no hits are produced with these coarse geometries and they unuseful 
+        // for reconstruction !):
+        //                                                     
+        //
+        //
+        //AliITSvPPRcoarseasymm *ITS  = new AliITSvPPRcoarseasymm("ITS","New ITS coarse version with asymmetric services");
+        //ITS->SetRails(1);                // 1 --> rails in ; 0 --> rails out
+        //ITS->SetSupportMaterial(0);      // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon
+        //
+        //AliITS *ITS  = new AliITSvPPRcoarsesymm("ITS","New ITS coarse version with symmetric services");
+        //ITS->SetRails(1);                // 1 --> rails in ; 0 --> rails out
+        //ITS->SetSupportMaterial(0);      // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon
+        //                      
+        //
+        //
+        // Geant3 <-> EUCLID conversion
+        // ============================
+        //
+        // SetEUCLID is a flag to output (=1) or not to output (=0) both geometry and
+        // media to two ASCII files (called by default ITSgeometry.euc and
+        // ITSgeometry.tme) in a format understandable to the CAD system EUCLID.
+        // The default (=0) means that you dont want to use this facility.
+        //
+        ITS->SetEUCLID(0);
+    }
+
+    if (iTPC)
+    {
+        //============================ TPC parameters ================================
+        // --- This allows the user to specify sectors for the SLOW (TPC geometry 2)
+        // --- Simulator. SecAL (SecAU) <0 means that ALL lower (upper)
+        // --- sectors are specified, any value other than that requires at least one 
+        // --- sector (lower or upper)to be specified!
+        // --- Reminder: sectors 1-24 are lower sectors (1-12 -> z>0, 13-24 -> z<0)
+        // ---           sectors 25-72 are the upper ones (25-48 -> z>0, 49-72 -> z<0)
+        // --- SecLows - number of lower sectors specified (up to 6)
+        // --- SecUps - number of upper sectors specified (up to 12)
+        // --- Sens - sensitive strips for the Slow Simulator !!!
+        // --- This does NOT work if all S or L-sectors are specified, i.e.
+        // --- if SecAL or SecAU < 0
+        //
+        //
+        //-----------------------------------------------------------------------------
+
+        //  gROOT->LoadMacro("SetTPCParam.C");
+        //  AliTPCParam *param = SetTPCParam();
+        AliTPC *TPC = new AliTPCv2("TPC", "Default");
+
+        // All sectors included 
+        TPC->SetSecAL(-1);
+        TPC->SetSecAU(-1);
+
+    }
+
+    if (iTOF)
+    {
+        //=================== TOF parameters ============================
+        AliTOF *TOF = new AliTOFv2("TOF", "normal TOF");
+    }
+
+    if (iRICH)
+    {
+        //=================== RICH parameters ===========================
+        AliRICH *RICH = new AliRICHv1("RICH", "normal RICH");
+
+    }
+
+
+    if (iZDC)
+    {
+        //=================== ZDC parameters ============================
+
+        AliZDC *ZDC = new AliZDCv1("ZDC", "normal ZDC");
+    }
+
+    if (iCASTOR)
+    {
+        //=================== CASTOR parameters ============================
+
+        AliCASTOR *CASTOR = new AliCASTORv1("CASTOR", "normal CASTOR");
+    }
+
+    if (iTRD)
+    {
+        //=================== TRD parameters ============================
+
+        AliTRD *TRD = new AliTRDv1("TRD", "TRD slow simulator");
+
+        // Select the gas mixture (0: 97% Xe + 3% isobutane, 1: 90% Xe + 10% CO2)
+        TRD->SetGasMix(1);
+
+        // With hole in front of PHOS
+        TRD->SetPHOShole();
+        // With hole in front of RICH
+        TRD->SetRICHhole();
+        // Switch on TR
+        AliTRDsim *TRDsim = TRD->CreateTR();
+    }
+
+    if (iFMD)
+    {
+        //=================== FMD parameters ============================
+
+        AliFMD *FMD = new AliFMDv1("FMD", "normal FMD");
+    }
+
+    if (iMUON)
+    {
+        //=================== MUON parameters ===========================
+
+        AliMUON *MUON = new AliMUONv1("MUON", "default");
+    }
+    //=================== PHOS parameters ===========================
+
+    if (iPHOS)
+    {
+        AliPHOS *PHOS = new AliPHOSv1("PHOS", "GPS2");
+    }
+
+
+    if (iPMD)
+    {
+        //=================== PMD parameters ============================
+
+        AliPMD *PMD = new AliPMDv1("PMD", "normal PMD");
+
+        PMD->SetPAR(1., 1., 0.8, 0.02);
+        PMD->SetIN(6., 18., -580., 27., 27.);
+        PMD->SetGEO(0.0, 0.2, 4.);
+        PMD->SetPadSize(0.8, 1.0, 1.0, 1.5);
+
+    }
+
+    if (iSTART)
+    {
+        //=================== START parameters ============================
+        AliSTART *START = new AliSTARTv1("START", "START Detector");
+    }
+
+
+}
index 20f904643f58d3e515000d7b1ecbe8ec43fa040b..183e2fc697e81aac5836f9db901dee133664689d 100755 (executable)
@@ -6,6 +6,9 @@
 # modification history
 #
 # $Log$
 # modification history
 #
 # $Log$
+# Revision 1.6  2001/05/16 14:57:30  alibrary
+# New files for folders and Stack
+#
 #
 # Revision 1.5  2001/02/23 17:33:40  buncic
 # Added alifs wrapper for CASTOR and alirun modified accordingly.
 #
 # Revision 1.5  2001/02/23 17:33:40  buncic
 # Added alifs wrapper for CASTOR and alirun modified accordingly.
@@ -163,6 +166,7 @@ then
   exec $ALIRUN_SHELL -norc  -noprofile $0 $*
 fi
 
   exec $ALIRUN_SHELL -norc  -noprofile $0 $*
 fi
 
+
 ###########################################################################
 AliRun()
 ###########################################################################
 ###########################################################################
 AliRun()
 ###########################################################################
@@ -179,6 +183,38 @@ AliRun()
    exit
 }
 
    exit
 }
 
+###########################################################################
+AliSetRoot()
+###########################################################################
+{
+  ALICE_ROOT=$1;                       export ALICE_ROOT
+  ALICE=`dirname $ALICE_ROOT`;         export ALICE          
+  ALICE_LEVEL=`basename $ALICE_ROOT`;  export ALICE_LEVEL
+  ALICE_TARGET=`uname`;                export ALICE_TARGET
+  ROOTSYS=$2;                          export ROOTSYS
+  
+  LD_LIBRARY_PATH=$ROOTSYS/lib
+
+  if [ -f $ALICE/bin/changeRoot.sh ]
+  then
+    .   $ALICE/bin/changeRoot.sh \
+              $ALICE $ALICE_LEVEL $ALICE_TARGET $ROOTSYS
+  fi
+
+  if [ ! -x $ALICE_BIN/aliroot -o ! -x $ROOTSYS/bin/root ]
+  then
+     printf "Invalid Alice library directory: %s\n" $1
+     exit 1 
+  fi
+
+  LD_LIBRARY_PATH=${ROOTSYS}/lib:${ALICE_LIB}; export LD_LIBRARY_PATH
+  PATH=${ALICE_BIN}:${ROOTSYS}/bin:${PATH}; export PATH
+
+  printf "ALICE environment reset to %s\n" $ALICE_ROOT
+  which root
+  which aliroot
+}
+
 ###########################################################################
 Mktemp()
 ###########################################################################
 ###########################################################################
 Mktemp()
 ###########################################################################
@@ -475,6 +511,7 @@ OUTPUT=.
 CMDLIST=""
 FORK="FALSE"
 FORK_LSF="FALSE"
 CMDLIST=""
 FORK="FALSE"
 FORK_LSF="FALSE"
+BATCH="FALSE"
 ECHO=""
 NEVENTS=1
 USE_CACHE="file->UseCache()"
 ECHO=""
 NEVENTS=1
 USE_CACHE="file->UseCache()"
@@ -517,6 +554,15 @@ do
             shift 1
             set -vx
             ;;
             shift 1
             set -vx
             ;;
+        -setroot)
+            shift 1
+            AliSetRoot $1 $2
+            shift 1
+            ;;
+        -batch)
+            shift 1
+            BATCH="TRUE"
+            ;;
         -echo)
             shift 1
             ECHO="echo "
         -echo)
             shift 1
             ECHO="echo "
@@ -661,10 +707,10 @@ then
   $MKDIR -p $CONFIG_OUTDIR
 fi
 
   $MKDIR -p $CONFIG_OUTDIR
 fi
 
-mkdir -p $ALIRUN_TMPDIR
-
 CONFIG_FILE=$CONFIG_FILE_PREFIX$CONFIG_OUTDIR/$FILE; export CONFIG_FILE
 
 CONFIG_FILE=$CONFIG_FILE_PREFIX$CONFIG_OUTDIR/$FILE; export CONFIG_FILE
 
+mkdir -p $ALIRUN_TMPDIR
+
 trap Cleanup 2
 
 (
 trap Cleanup 2
 
 (