X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=FMD%2FConfig.C;h=e49b6dc07d4669d355a45c6a03cc11a02802f7e3;hb=fa35b51673adae4c53ff8b2419ffb6cd3a420623;hp=6f13d2de32e58a8a916d4f306def8a41b48a24ed;hpb=6169f936bbf9b2270d92661a7936ca90c4d1ae7e;p=u%2Fmrichter%2FAliRoot.git diff --git a/FMD/Config.C b/FMD/Config.C index 6f13d2de32e..e49b6dc07d4 100644 --- a/FMD/Config.C +++ b/FMD/Config.C @@ -13,54 +13,6 @@ @date Mon Mar 27 12:50:29 2006 @brief Simulation configuration script */ -#if !defined(__CINT__) || defined(__MAKECINT__) -#include -#include -#include -#include -#include -#include "STEER/AliRunLoader.h" -#include "STEER/AliRun.h" -#include "STEER/AliConfig.h" -#include "STEER/AliGenerator.h" -#include "PYTHIA6/AliDecayerPythia.h" -#include "EVGEN/AliGenHIJINGpara.h" -#include "THijing/AliGenHijing.h" -#include "EVGEN/AliGenCocktail.h" -#include "EVGEN/AliGenSlowNucleons.h" -#include "EVGEN/AliSlowNucleonModelExp.h" -#include "EVGEN/AliGenParam.h" -#include "EVGEN/AliGenMUONlib.h" -#include "EVGEN/AliGenMUONCocktail.h" -#include "PYTHIA6/AliGenPythia.h" -#include "STEER/AliMagFMaps.h" -#include "STRUCT/AliBODY.h" -#include "STRUCT/AliMAG.h" -#include "STRUCT/AliABSOv0.h" -#include "STRUCT/AliDIPOv2.h" -#include "STRUCT/AliHALL.h" -#include "STRUCT/AliFRAMEv2.h" -#include "STRUCT/AliSHILv2.h" -#include "STRUCT/AliPIPEv0.h" -#include "ITS/AliITSvPPRasymmFMD.h" -#include "TPC/AliTPCv2.h" -#include "TOF/AliTOFv4T0.h" -#include "RICH/AliRICHv1.h" -#include "ZDC/AliZDCv2.h" -#include "TRD/AliTRDv1.h" -#include "FMD/AliFMDv1.h" -#include "MUON/AliMUONv1.h" -#include "MUON/AliMUONSt1GeometryBuilderV2.h" -#include "MUON/AliMUONSt2GeometryBuilder.h" -#include "MUON/AliMUONSlatGeometryBuilder.h" -#include "MUON/AliMUONTriggerGeometryBuilder.h" -#include "PHOS/AliPHOSv1.h" -#include "PMD/AliPMDv1.h" -#include "START/AliSTARTv1.h" -#include "EMCAL/AliEMCALv1.h" -#include "CRT/AliCRTv0.h" -#include "VZERO/AliVZEROv2.h" -#endif //____________________________________________________________________ // @@ -199,13 +151,6 @@ enum Rad_t { kNoGluonRadiation // }; -//____________________________________________________________________ -enum Mag_t { - k2kG, // - k4kG, // - k5kG // -}; - //____________________________________________________________________ enum MC_t { kFLUKA, @@ -217,8 +162,8 @@ enum MC_t { //____________________________________________________________________ // Functions Float_t EtaToTheta(Float_t eta); -Eg_t LookupEG(const Char_t* name); -AliGenerator* GeneratorFactory(EG_t eg, Rad_t rad, TString& comment); +EG_t LookupEG(const Char_t* name); +AliGenerator* GeneratorFactory(EG_t eg, Rad_t rad); AliGenHijing* HijingStandard(); void ProcessEnvironmentVars(EG_t& eg, Int_t& seed); @@ -228,20 +173,13 @@ Config() { //____________________________________________________________________ // This part for configuration - // EG_t eg = test50; - // EG_t eg = kParam_fmd; - // EG_t eg = kParam_2000; // kPythia; - EG_t eg = kFMDFlat; + EG_t eg = kPythia6; Geo_t geo = kNoHoles; Rad_t rad = kGluonRadiation; - Mag_t mag = k5kG; + AliMagF::BMap_t mag = AliMagF::k5kG; Int_t seed = 12345; //Set 0 to use the current time MC_t mc = kGEANT3TGEO; - //____________________________________________________________________ - // Comment line - static TString comment; - //____________________________________________________________________ // Get settings from environment variables ProcessEnvironmentVars(eg, seed); @@ -273,6 +211,7 @@ Config() // // Libraries needed by GEANT 3.21 // + gSystem->Load("$ALICE_ROOT/lib/tgt_$ALICE_TARGET/libpythia6.so"); gSystem->Load("libgeant321"); // @@ -287,6 +226,10 @@ Config() // // Libraries needed by GEANT 3.21 // + gSystem->Load("$ALICE_ROOT/lib/tgt_$ALICE_TARGET/liblhapdf.so"); + gSystem->Load("$ALICE_ROOT/lib/tgt_$ALICE_TARGET/libpythia6.so"); + gSystem->Load("libEGPythia6.so"); //<- For non-debian (sigh!) + // gSystem->Load("EGPythia6.so"); gSystem->Load("libgeant321"); // @@ -386,7 +329,7 @@ Config() gMC->SetProcess("MUNU",1); gMC->SetProcess("CKOV",1); gMC->SetProcess("HADR",1); - gMC->SetProcess("LOSS",2); + gMC->SetProcess("LOSS",1); // 0:none 1,3:dray 2:nodray 4:nofluct (def:2) gMC->SetProcess("MULS",1); gMC->SetProcess("RAYL",1); @@ -408,7 +351,7 @@ Config() //__________________________________________________________________ // Generator Configuration - AliGenerator* gener = GeneratorFactory(eg, rad, comment); + AliGenerator* gener = GeneratorFactory(eg, rad); gener->SetOrigin(0, 0, 0); // vertex position gener->SetSigma(0, 0, 5.3); // Sigma in (X,Y,Z) (cm) on IP position gener->SetCutVertexZ(1.); // Truncate at 1 sigma @@ -416,293 +359,75 @@ Config() gener->SetTrackingFlag(1); gener->Init(); - //__________________________________________________________________ - // - // Comments - // - switch (mag) { - case k2kG: comment = comment.Append(" | L3 field 0.2 T"); break; - case k4kG: comment = comment.Append(" | L3 field 0.4 T"); break; - case k5kG: comment = comment.Append(" | L3 field 0.5 T"); break; - } - - switch (rad) { - case kGluonRadiation: - comment = comment.Append(" | Gluon Radiation On"); break; - default: - comment = comment.Append(" | Gluon Radiation Off"); break; - } - - switch(geo) { - case kHoles: comment = comment.Append(" | Holes for PHOS/RICH"); break; - default: comment = comment.Append(" | No holes for PHOS/RICH"); break; - } - - std::cout << "\n\n Comment: " << comment << "\n" << std::endl; - //__________________________________________________________________ // Field (L3 0.4 T) - AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 2, 1., 10., mag); - field->SetL3ConstField(0); //Using const. field in the barrel + AliMagF* field = new AliMagF("Maps","Maps",-1., -1., mag); + TGeoGlobalMagField::Instance()->SetField(field); + rl->CdGAFile(); - gAlice->SetField(field); + + TFile* magF = TFile::Open("mag.root", "RECREATE"); + field->Write("mag"); + magF->Close(); //__________________________________________________________________ // // Used detectors // Bool_t useABSO = kFALSE; - Bool_t useCRT = kFALSE; + Bool_t useACORDE= kFALSE; Bool_t useDIPO = kFALSE; Bool_t useFMD = kTRUE; Bool_t useFRAME = kFALSE; Bool_t useHALL = kFALSE; - Bool_t useITS = kFALSE; + Bool_t useITS = kTRUE; Bool_t useMAG = kFALSE; Bool_t useMUON = kFALSE; Bool_t usePHOS = kFALSE; - Bool_t usePIPE = kFALSE; + Bool_t usePIPE = kTRUE; Bool_t usePMD = kFALSE; - Bool_t useRICH = kFALSE; + Bool_t useHMPID = kFALSE; Bool_t useSHIL = kFALSE; - Bool_t useSTART = kFALSE; + Bool_t useT0 = kTRUE; Bool_t useTOF = kFALSE; Bool_t useTPC = kFALSE; Bool_t useTRD = kFALSE; Bool_t useZDC = kFALSE; Bool_t useEMCAL = kFALSE; - Bool_t useVZERO = kFALSE; + Bool_t useVZERO = kTRUE; cout << "\t* Creating the detectors ..." << endl; // ================= Alice BODY parameters ========================= AliBODY *BODY = new AliBODY("BODY", "Alice envelop"); - if (useMAG) { - // =================== MAG parameters ============================ - // Start with Magnet since detector layouts may be depending on - // the selected Magnet dimensions - AliMAG *MAG = new AliMAG("MAG", "Magnet"); - } - - if (useABSO) { - // =================== ABSO parameters =========================== - AliABSO *ABSO = new AliABSOv0("ABSO", "Muon Absorber"); - } - - if (useDIPO) { - // =================== DIPO parameters =========================== - AliDIPO *DIPO = new AliDIPOv2("DIPO", "Dipole version 2"); - } - - if (useHALL) { - // =================== HALL parameters =========================== - AliHALL *HALL = new AliHALL("HALL", "Alice Hall"); - } - - + if (useMAG) AliMAG *MAG = new AliMAG("MAG", "Magnet"); + if (useABSO) AliABSO *ABSO = new AliABSOv3("ABSO", "Muon Absorber"); + if (useDIPO) AliDIPO *DIPO = new AliDIPOv3("DIPO", "Dipole version 3"); + if (useHALL) AliHALL *HALL = new AliHALLv3("HALL", "Alice Hall"); if (useFRAME) { - // ================== FRAME parameters =========================== AliFRAMEv2 *FRAME = new AliFRAMEv2("FRAME", "Space Frame"); switch (geo) { case kHoles: FRAME->SetHoles(1); break; default: FRAME->SetHoles(0); break; } } - - if (useSHIL) { - // ================== SHIL parameters ============================ - AliSHIL *SHIL = new AliSHILv2("SHIL", "Shielding Version 2"); - } - - - if (usePIPE) { - // ================== PIPE parameters ============================ - AliPIPE *PIPE = new AliPIPEv0("PIPE", "Beam Pipe"); - } - - if (useITS) { - // =================== 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"); - // - AliITSvPPRasymmFMD *ITS = - new AliITSvPPRasymmFMD("ITS","New ITS PPR detailed version " - "with asymmetric services"); - // don't touch this parameter if you're not an ITS developer - ITS->SetMinorVersion(2); - // don't touch this parameter if you're not an ITS developer - ITS->SetReadDet(kTRUE); - // don't touch this parameter if you're not an ITS developer - // ITS->SetWriteDet("$ALICE_ROOT/ITS/ITSgeometry_vPPRasymm2.det"); - // detector thickness on layer 1 must be in the range [100,300] - ITS->SetThicknessDet1(200.); - // detector thickness on layer 2 must be in the range [100,300] - ITS->SetThicknessDet2(200.); - // chip thickness on layer 1 must be in the range [150,300] - ITS->SetThicknessChip1(200.); - // chip thickness on layer 2 must be in the range [150,300] - ITS->SetThicknessChip2(200.); - // 1 --> rails in ; 0 --> rails out - ITS->SetRails(0); - // 1 --> water ; 0 --> freon - ITS->SetCoolingFluid(1); - - // Coarse geometries (warning: no hits are produced with these - // coarse geometries and they unuseful for reconstruction !): - // - // - // AliITSvPPRcoarseasymm *ITS = - // new AliITSvPPRcoarseasymm("ITS","New ITS PPR coarse version " - // "with asymmetric services"); - // 1 --> rails in ; 0 --> rails out - // ITS->SetRails(0); - // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon - // ITS->SetSupportMaterial(0); - // - // AliITS *ITS = - // new AliITSvPPRcoarsesymm("ITS","New ITS PPR coarse version " - // "with symmetric services"); - // 1 --> rails in ; 0 --> rails out - // ITS->SetRails(0); - // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon - // ITS->SetSupportMaterial(0); - // - // 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 (useTPC) { - // =================== 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"); - } - - if (useTOF) { - // ================== TOF parameters ============================= - AliTOF *TOF = new AliTOFv4T0("TOF", "normal TOF"); - } - - if (useRICH) { - // ================== RICH parameters ============================ - AliRICH *RICH = new AliRICHv1("RICH", "normal RICH"); - - } - - if (useZDC) { - // ================== ZDC parameters ============================= - AliZDC *ZDC = new AliZDCv2("ZDC", "normal ZDC"); - } - - if (useTRD) { - // ================== 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); - if (geo == kHoles) { - // With hole in front of PHOS - TRD->SetPHOShole(); - // With hole in front of RICH - TRD->SetRICHhole(); - } - // Switch on TR - AliTRDsim *TRDsim = TRD->CreateTR(); - } - - if (useFMD) { - // =================== FMD parameters ============================ - AliFMD *FMD = new AliFMDv1("FMD", "normal FMD"); - // FMD->UseDetailed(kFALSE); - // FMD->UseAssembly(); - // FMD->UseOld(); - } - - if (useMUON) { - // =================== MUON parameters =========================== - AliMUON *MUON = new AliMUONv1("MUON", "default"); - // MUON->AddGeometryBuilder(new AliMUONSt1GeometryBuilder(MUON)); - // MUON->AddGeometryBuilder(new AliMUONSt2GeometryBuilder(MUON)); - // MUON->AddGeometryBuilder(new AliMUONSlatGeometryBuilder(MUON)); - // MUON->AddGeometryBuilder(new AliMUONTriggerGeometryBuilder(MUON)); - } - - if (usePHOS) { - // =================== PHOS parameters =========================== - AliPHOS *PHOS = new AliPHOSv1("PHOS", "IHEP"); - } - - if (usePMD) { - // =================== PMD parameters ============================ - AliPMD *PMD = new AliPMDv1("PMD", "normal PMD"); - } - - if (useSTART) { - // =================== START parameters ========================== - AliSTART *START = new AliSTARTv1("START", "START Detector"); - } - - if (useEMCAL) { - // =================== EMCAL parameters ========================== - AliEMCAL *EMCAL = new AliEMCALv1("EMCAL", "EMCAL_55_25"); - } - - if (useCRT) { - // =================== CRT parameters ============================ - AliCRT *CRT = new AliCRTv0("CRT", "normal ACORDE"); - } - - if (useVZERO) { - // =================== V0 parameters ============================= - AliVZERO *VZERO = new AliVZEROv3("VZERO", "normal VZERO"); - } + if (useSHIL) AliSHIL *SHIL = new AliSHILv3("SHIL", "Shielding v3"); + if (usePIPE) AliPIPE *PIPE = new AliPIPEv3("PIPE", "Beam Pipe"); + if (useITS) AliITS *ITS = new AliITSv11Hybrid("ITS","ITS v11Hybrid"); + if (useTPC) AliTPC *TPC = new AliTPCv2("TPC", "Default"); + if (useTOF) AliTOF *TOF = new AliTOFv6T0("TOF", "normal TOF"); + if (useHMPID) AliHMPID *HMPID = new AliHMPIDv1("HMPID", "normal HMPID"); + if (useZDC) AliZDC *ZDC = new AliZDCv3("ZDC", "normal ZDC"); + if (useTRD) AliTRD *TRD = new AliTRDv1("TRD", "TRD slow simulator"); + if (useFMD) AliFMD *FMD = new AliFMDv1("FMD", "normal FMD"); + if (useMUON) AliMUON *MUON = new AliMUONv1("MUON", "default"); + if (usePHOS) AliPHOS *PHOS = new AliPHOSv1("PHOS", "IHEP"); + if (usePMD) AliPMD *PMD = new AliPMDv1("PMD", "normal PMD"); + if (useT0) AliT0 *T0 = new AliT0v1("T0", "T0 Detector"); + if (useEMCAL) AliEMCAL *EMCAL = new AliEMCALv2("EMCAL", "EMCAL_COMPLETE"); + if (useACORDE) AliACORDE *ACORDE = new AliACORDEv1("ACORDE", "normal ACORDE"); + if (useVZERO) AliVZERO *VZERO = new AliVZEROv7("VZERO", "normal VZERO"); } //____________________________________________________________________ @@ -724,17 +449,38 @@ LookupEG(const Char_t* name) //____________________________________________________________________ AliGenerator* -GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) +GeneratorFactory(EG_t eg, Rad_t rad) { Int_t isw = 3; if (rad == kNoGluonRadiation) isw = 0; + // Possibly load libAliPythia6 + switch (eg) { + case kPythia6: + case kPythia6Jets20_24: + case kPythia6Jets24_29: + case kPythia6Jets29_35: + case kPythia6Jets35_42: + case kPythia6Jets42_50: + case kPythia6Jets50_60: + case kPythia6Jets60_72: + case kPythia6Jets72_86: + case kPythia6Jets86_104: + case kPythia6Jets104_125: + case kPythia6Jets125_150: + case kPythia6Jets150_180: + gSystem->Load("liblhapdf.so"); + // gSystem->Load("/usr/lib/libpythia.so"); + // gSystem->ListLibraries(); + gSystem->Load("EGPythia6.so"); + gSystem->Load("libAliPythia6"); + break; + } AliGenerator * gGener = 0; switch (eg) { case test50: { - comment = comment.Append(":HIJINGparam test 50 particles"); AliGenHIJINGpara *gener = new AliGenHIJINGpara(50); gener->SetMomentumRange(0, 999999.); gener->SetPhiRange(0., 360.); @@ -747,7 +493,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kParam_8000: { - comment = comment.Append(":HIJINGparam N=8000"); AliGenHIJINGpara *gener = new AliGenHIJINGpara(86030); gener->SetMomentumRange(0, 999999.); gener->SetPhiRange(0., 360.); @@ -760,7 +505,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kParam_4000: { - comment = comment.Append("HIJINGparam N=4000"); AliGenHIJINGpara *gener = new AliGenHIJINGpara(43015); gener->SetMomentumRange(0, 999999.); gener->SetPhiRange(0., 360.); @@ -773,7 +517,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kParam_2000: { - comment = comment.Append("HIJINGparam N=2000"); AliGenHIJINGpara *gener = new AliGenHIJINGpara(21507); gener->SetMomentumRange(0, 999999.); gener->SetPhiRange(0., 360.); @@ -786,7 +529,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kParam_fmd: { - comment = comment.Append("HIJINGparam N=100"); AliGenHIJINGpara *gener = new AliGenHIJINGpara(500); gener->SetMomentumRange(0, 999999.); gener->SetPhiRange(0., 360.); @@ -802,7 +544,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) // case kHijing_cent1: { - comment = comment.Append("HIJING cent1"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -811,7 +552,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kHijing_cent2: { - comment = comment.Append("HIJING cent2"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 2.); @@ -823,7 +563,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) // case kHijing_per1: { - comment = comment.Append("HIJING per1"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(5., 8.6); @@ -832,7 +571,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kHijing_per2: { - comment = comment.Append("HIJING per2"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(8.6, 11.2); @@ -841,7 +579,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kHijing_per3: { - comment = comment.Append("HIJING per3"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(11.2, 13.2); @@ -850,7 +587,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kHijing_per4: { - comment = comment.Append("HIJING per4"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(13.2, 15.); @@ -859,7 +595,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kHijing_per5: { - comment = comment.Append("HIJING per5"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(15., 100.); @@ -871,7 +606,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) // case kHijing_jj25: { - comment = comment.Append("HIJING Jet 25 GeV"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -888,7 +622,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) case kHijing_jj50: { - comment = comment.Append("HIJING Jet 50 GeV"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -905,7 +638,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) case kHijing_jj75: { - comment = comment.Append("HIJING Jet 75 GeV"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -922,7 +654,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) case kHijing_jj100: { - comment = comment.Append("HIJING Jet 100 GeV"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -939,7 +670,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) case kHijing_jj200: { - comment = comment.Append("HIJING Jet 200 GeV"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -958,7 +688,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) // case kHijing_gj25: { - comment = comment.Append("HIJING Gamma 25 GeV"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -975,7 +704,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) case kHijing_gj50: { - comment = comment.Append("HIJING Gamma 50 GeV"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -992,7 +720,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) case kHijing_gj75: { - comment = comment.Append("HIJING Gamma 75 GeV"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -1009,7 +736,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) case kHijing_gj100: { - comment = comment.Append("HIJING Gamma 100 GeV"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -1026,7 +752,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) case kHijing_gj200: { - comment = comment.Append("HIJING Gamma 200 GeV"); AliGenHijing *gener = HijingStandard(); // impact parameter range gener->SetImpactParameterRange(0., 5.); @@ -1042,7 +767,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kHijing_pA: { - comment = comment.Append("HIJING pA"); AliGenCocktail *gener = new AliGenCocktail(); @@ -1079,7 +803,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6: { - comment = comment.Append(":Pythia p-p @ 14 TeV"); AliGenPythia *gener = new AliGenPythia(-1); gener->SetMomentumRange(0,999999); gener->SetThetaRange(0., 180.); @@ -1092,7 +815,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets20_24: { - comment = comment.Append(":Pythia jets 20-24 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1111,7 +833,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets24_29: { - comment = comment.Append(":Pythia jets 24-29 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1130,7 +851,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets29_35: { - comment = comment.Append(":Pythia jets 29-35 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1149,7 +869,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets35_42: { - comment = comment.Append(":Pythia jets 35-42 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1168,7 +887,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets42_50: { - comment = comment.Append(":Pythia jets 42-50 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1187,7 +905,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets50_60: { - comment = comment.Append(":Pythia jets 50-60 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1206,7 +923,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets60_72: { - comment = comment.Append(":Pythia jets 60-72 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1225,7 +941,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets72_86: { - comment = comment.Append(":Pythia jets 72-86 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1244,7 +959,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets86_104: { - comment = comment.Append(":Pythia jets 86-104 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1263,7 +977,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets104_125: { - comment = comment.Append(":Pythia jets 105-125 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1282,7 +995,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets125_150: { - comment = comment.Append(":Pythia jets 125-150 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1301,7 +1013,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPythia6Jets150_180: { - comment = comment.Append(":Pythia jets 150-180 GeV @ 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.);// Centre of mass energy gener->SetProcess(kPyJets);// Process type @@ -1320,7 +1031,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kD0PbPb5500: { - comment = comment.Append(" D0 in Pb-Pb at 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(10); gener->SetProcess(kPyD0PbPbMNR); gener->SetStrucFunc(kCTEQ4L); @@ -1337,7 +1047,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kCharmSemiElPbPb5500: { - comment = comment.Append(" Charm in Pb-Pb at 5.5 TeV"); AliGenPythia * gener = new AliGenPythia(10); gener->SetProcess(kPyCharmPbPbMNR); gener->SetStrucFunc(kCTEQ4L); @@ -1353,7 +1062,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kBeautySemiElPbPb5500: { - comment = comment.Append(" Beauty in Pb-Pb at 5.5 TeV"); AliGenPythia *gener = new AliGenPythia(10); gener->SetProcess(kPyBeautyPbPbMNR); gener->SetStrucFunc(kCTEQ4L); @@ -1369,7 +1077,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kCocktailTRD: { - comment = comment.Append(" Cocktail for TRD at 5.5 TeV"); AliGenCocktail *gener = new AliGenCocktail(); AliGenParam *jpsi = new AliGenParam(10, @@ -1415,7 +1122,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPyJJ: { - comment = comment.Append(" Jet-jet at 5.5 TeV"); AliGenPythia *gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.); gener->SetProcess(kPyJets); @@ -1429,7 +1135,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kPyGJ: { - comment = comment.Append(" Gamma-jet at 5.5 TeV"); AliGenPythia *gener = new AliGenPythia(-1); gener->SetEnergyCMS(5500.); gener->SetProcess(kPyDirectGamma); @@ -1444,7 +1149,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kMuonCocktailCent1: { - comment = comment.Append(" Muon Cocktail Cent1"); AliGenMUONCocktail * gener = new AliGenMUONCocktail(); gener->SetPtRange(1.0,100.); // Transverse momentum range gener->SetPhiRange(0.,360.); // Azimuthal angle range @@ -1459,7 +1163,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kMuonCocktailPer1: { - comment = comment.Append(" Muon Cocktail Per1"); AliGenMUONCocktail * gener = new AliGenMUONCocktail(); gener->SetPtRange(1.0,100.); // Transverse momentum range gener->SetPhiRange(0.,360.); // Azimuthal angle range @@ -1474,7 +1177,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kMuonCocktailPer4: { - comment = comment.Append(" Muon Cocktail Per4"); AliGenMUONCocktail * gener = new AliGenMUONCocktail(); gener->SetPtRange(1.0,100.); // Transverse momentum range gener->SetPhiRange(0.,360.); // Azimuthal angle range @@ -1489,7 +1191,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kMuonCocktailCent1HighPt: { - comment = comment.Append(" Muon Cocktail HighPt Cent1"); AliGenMUONCocktail * gener = new AliGenMUONCocktail(); gener->SetPtRange(1.0,100.); // Transverse momentum range gener->SetPhiRange(0.,360.); // Azimuthal angle range @@ -1504,7 +1205,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kMuonCocktailPer1HighPt : { - comment = comment.Append(" Muon Cocktail HighPt Per1"); AliGenMUONCocktail * gener = new AliGenMUONCocktail(); gener->SetPtRange(1.0,100.); // Transverse momentum range gener->SetPhiRange(0.,360.); // Azimuthal angle range @@ -1519,7 +1219,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kMuonCocktailPer4HighPt: { - comment = comment.Append(" Muon Cocktail HighPt Per4"); AliGenMUONCocktail * gener = new AliGenMUONCocktail(); gener->SetPtRange(1.0,100.); // Transverse momentum range gener->SetPhiRange(0.,360.); // Azimuthal angle range @@ -1534,7 +1233,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kMuonCocktailCent1Single: { - comment = comment.Append(" Muon Cocktail Single Cent1"); AliGenMUONCocktail * gener = new AliGenMUONCocktail(); gener->SetPtRange(1.0,100.); // Transverse momentum range gener->SetPhiRange(0.,360.); // Azimuthal angle range @@ -1549,7 +1247,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kMuonCocktailPer1Single : { - comment = comment.Append(" Muon Cocktail Single Per1"); AliGenMUONCocktail * gener = new AliGenMUONCocktail(); gener->SetPtRange(1.0,100.); // Transverse momentum range gener->SetPhiRange(0.,360.); // Azimuthal angle range @@ -1564,7 +1261,6 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kMuonCocktailPer4Single: { - comment = comment.Append(" Muon Cocktail Single Per4"); AliGenMUONCocktail * gener = new AliGenMUONCocktail(); gener->SetPtRange(1.0,100.); // Transverse momentum range gener->SetPhiRange(0.,360.); // Azimuthal angle range @@ -1579,9 +1275,8 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kFMD1Flat: { - comment = comment.Append(" Flat in FMD1 range"); AliGenBox* gener = new AliGenBox(2000); - gener->SetPart(211); + gener->SetPart(kPiPlus); gener->SetMomentumRange(3,4); gener->SetPhiRange(0, 360); gener->SetThetaRange(0.77, 3.08); @@ -1590,9 +1285,8 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kFMD2Flat: { - comment = comment.Append(" Flat in FMD2 range"); - AliGenBox* gener = new AliGenBox(2000); - gener->SetPart(211); + AliGenBox* gener = new AliGenBox(100); + gener->SetPart(kPiPlus); gener->SetMomentumRange(3,4); gener->SetPhiRange(0, 360); gener->SetThetaRange(2.95, 20.42); @@ -1601,9 +1295,8 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kFMD3Flat: { - comment = comment.Append(" Flat in FMD3 range"); AliGenBox* gener = new AliGenBox(2000); - gener->SetPart(211); + gener->SetPart(kPiPlus); gener->SetMomentumRange(3,4); gener->SetPhiRange(0, 360); gener->SetThetaRange(155.97, 176.73); @@ -1612,21 +1305,20 @@ GeneratorFactory(EG_t eg, Rad_t rad, TString& comment) break; case kFMDFlat: { - comment = comment.Append(" Flat in FMD range"); AliGenCocktail* gener = new AliGenCocktail(); gener->SetMomentumRange(3,4); gener->SetPhiRange(0, 360); AliGenBox* gener3 = new AliGenBox(2000); gener3->SetThetaRange(155.97, 176.73); - gener3->SetPart(211); + gener3->SetPart(kPiPlus); gener->AddGenerator(gener3, "FMD3", .33); AliGenBox* gener2 = new AliGenBox(2000); gener2->SetThetaRange(2.95, 20.42); - gener2->SetPart(211); + gener2->SetPart(kPiPlus); gener->AddGenerator(gener2, "FMD2", .33); AliGenBox* gener1 = new AliGenBox(2000); gener1->SetThetaRange(0.77, 3.08); - gener1->SetPart(211); + gener1->SetPart(kPiPlus); gener->AddGenerator(gener1, "FMD1", .34); gGener = gener; }