X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=blobdiff_plain;f=macros%2FConfigHBT.C;h=9dd2464872f29dcc40879c87dc3d9443e8739d5e;hp=cd5b4afdb2eb0b4c1ddac935113f02bb3704e171;hb=6b612c2da5d841214af8ea5e2a0c0e82946ffe6e;hpb=9216eabfd101d34099326ee6825658aec599f48f diff --git a/macros/ConfigHBT.C b/macros/ConfigHBT.C index cd5b4afdb2e..9dd2464872f 100644 --- a/macros/ConfigHBT.C +++ b/macros/ConfigHBT.C @@ -42,6 +42,13 @@ #include "ACORDE/AliACORDEv1.h" #endif +enum PprGeo_t + { + kHoles, kNoHoles + }; + +static PprGeo_t geo = kHoles; + void Config() { // Set Random Number seed @@ -292,6 +299,11 @@ void Config() //=================== FRAME parameters ============================ AliFRAME *FRAME = new AliFRAMEv2("FRAME", "Space Frame"); + if (geo == kHoles) { + FRAME->SetHoles(1); + } else { + FRAME->SetHoles(0); + } }