]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDv1.cxx
Add switch for hit structure type
[u/mrichter/AliRoot.git] / TRD / AliTRDv1.cxx
index 88f4340eaf30c49023889871a01a2f601b9a2d6f..0de7758d7e090d47bcedb98aaa9799dda61c90d0 100644 (file)
 
 /*
 $Log$
+Revision 1.31  2002/02/11 14:25:27  cblume
+Geometry update, compressed hit structure
+
+Revision 1.30  2001/05/21 16:45:47  hristov
+Last minute changes (C.Blume)
+
+Revision 1.29  2001/05/16 14:57:28  alibrary
+New files for folders and Stack
+
+Revision 1.28  2001/05/07 08:03:22  cblume
+Generate also hits in the amplification region
+
+Revision 1.27  2001/03/30 14:40:15  cblume
+Update of the digitization parameter
+
+Revision 1.26  2000/11/30 17:38:08  cblume
+Changes to get in line with new STEER and EVGEN
+
 Revision 1.25  2000/11/15 14:30:16  cblume
 Fixed bug in calculating detector no. of extra hit
 
@@ -123,12 +141,6 @@ AliTRDv1::AliTRDv1():AliTRD()
   // Default constructor
   //
 
-  fIdSens          =  0;
-
-  fIdChamber1      =  0;
-  fIdChamber2      =  0;
-  fIdChamber3      =  0;
-
   fSensSelect      =  0;
   fSensPlane       = -1;
   fSensChamber     = -1;
@@ -148,12 +160,6 @@ AliTRDv1::AliTRDv1(const char *name, const char *title)
   // Standard constructor for Transition Radiation Detector version 1
   //
 
-  fIdSens          =  0;
-
-  fIdChamber1      =  0;
-  fIdChamber2      =  0;
-  fIdChamber3      =  0;
-
   fSensSelect      =  0;
   fSensPlane       = -1;
   fSensChamber     = -1;
@@ -209,12 +215,6 @@ void AliTRDv1::Copy(TObject &trd)
   // Copy function
   //
 
-  ((AliTRDv1 &) trd).fIdSens          = fIdSens;
-
-  ((AliTRDv1 &) trd).fIdChamber1      = fIdChamber1;
-  ((AliTRDv1 &) trd).fIdChamber2      = fIdChamber2;
-  ((AliTRDv1 &) trd).fIdChamber3      = fIdChamber3;
-
   ((AliTRDv1 &) trd).fSensSelect      = fSensSelect;
   ((AliTRDv1 &) trd).fSensPlane       = fSensPlane;
   ((AliTRDv1 &) trd).fSensChamber     = fSensChamber;
@@ -275,15 +275,14 @@ void AliTRDv1::CreateTRhit(Int_t det)
   const Int_t   kNTR         = 50;
 
   TLorentzVector mom, pos;
-  TClonesArray  &lhits = *fHits;
-
-  // Create TR only for electrons 
-  Int_t iPdg = gMC->TrackPid();
-  if (TMath::Abs(iPdg) != kPdgElectron) return;
 
   // Create TR at the entrance of the chamber
   if (gMC->IsTrackEntering()) {
 
+    // Create TR only for electrons 
+    Int_t iPdg = gMC->TrackPid();
+    if (TMath::Abs(iPdg) != kPdgElectron) return;
+
     Float_t eTR[kNTR];
     Int_t   nTR;
 
@@ -316,7 +315,7 @@ void AliTRDv1::CreateTRhit(Int_t det)
         // Gas-mixture (Xe/CO2)
         Double_t muXe = fTR->GetMuXe(energyMeV);
         Double_t muCO = fTR->GetMuCO(energyMeV);
-        sigma = (0.90 * muXe + 0.10 * muCO) * fGasDensity;
+        sigma = (0.85 * muXe + 0.15 * muCO) * fGasDensity;
       }
       else {
         // Gas-mixture (Xe/Isobutane) 
@@ -342,8 +341,7 @@ void AliTRDv1::CreateTRhit(Int_t det)
 
       // Add the hit to the array. TR photon hits are marked 
       // by negative charge
-      new(lhits[fNhits++]) AliTRDhit(fIshunt,gAlice->CurrentTrack()
-                                    ,det,posHit,-q);
+      AddHit(gAlice->CurrentTrack(),det,posHit,-q,kTRUE); 
 
     }
 
@@ -360,7 +358,7 @@ void AliTRDv1::Init()
 
   AliTRD::Init();
 
-  printf("          Slow simulator\n\n");
+  if(fDebug) printf("%s: Slow simulator\n",ClassName());
   if (fSensSelect) {
     if (fSensPlane   >= 0)
       printf("          Only plane %d is sensitive\n",fSensPlane);
@@ -375,9 +373,9 @@ void AliTRDv1::Init()
     }
   }
   if (fTR) 
-    printf("          TR simulation on\n");
+    printf("%s: TR simulation on\n",ClassName());
   else
-    printf("          TR simulation off\n");
+    printf("%s: TR simulation off\n",ClassName());
   printf("\n");
 
   // First ionization potential (eV) for the gas mixture (90% Xe + 10% CO2)
@@ -389,16 +387,11 @@ void AliTRDv1::Init()
   Float_t eEnd = TMath::Log(kEend);
   fDeltaE = new TF1("deltae",Ermilova,poti,eEnd,0);
 
-  // Identifier of the sensitive volume (drift region)
-  fIdSens     = gMC->VolId("UL05");
-
-  // Identifier of the TRD-driftchambers
-  fIdChamber1 = gMC->VolId("UCIO");
-  fIdChamber2 = gMC->VolId("UCIM");
-  fIdChamber3 = gMC->VolId("UCII");
-
-  for (Int_t i = 0; i < 80; i++) printf("*");
-  printf("\n");
+  if(fDebug) {
+    printf("%s: ",ClassName());
+    for (Int_t i = 0; i < 80; i++) printf("*");
+    printf("\n");
+  }
 
 }
 
@@ -508,9 +501,6 @@ void AliTRDv1::StepManager()
   // a spectrum taken from Ermilova et al.
   //
 
-  Int_t    iIdSens, icSens;
-  Int_t    iIdSpace, icSpace;
-  Int_t    iIdChamber, icChamber;
   Int_t    pla = 0;
   Int_t    cha = 0;
   Int_t    sec = 0;
@@ -524,28 +514,40 @@ void AliTRDv1::StepManager()
   Float_t  charge;
   Float_t  aMass;
 
-  Double_t pTot;
+  Double_t pTot = 0;
   Double_t eDelta;
   Double_t betaGamma, pp;
+  Double_t stepSize;
+
+  Bool_t   drRegion = kFALSE;
+  Bool_t   amRegion = kFALSE;
+
+  TString  cIdCurrent;
+  TString  cIdSensDr = "J";
+  TString  cIdSensAm = "K";
+  Char_t   cIdChamber[3];
+           cIdChamber[2] = 0;
 
   TLorentzVector pos, mom;
-  TClonesArray  &lhits = *fHits;
 
-  const Double_t kBig     = 1.0E+12;
+  const Int_t    kNplan       = AliTRDgeometry::Nplan();
+  const Double_t kBig         = 1.0E+12;
 
   // Ionization energy
-  const Float_t  kWion    = 22.04;
-  // Maximum energy for e+ e- g for the step-size calculation
-  const Float_t  kPTotMax = 0.002;
+  const Float_t  kWion        = 22.04;
+  // Maximum momentum for e+ e- g 
+  const Float_t  kPTotMaxEl   = 0.002;
+  // Minimum energy for the step size adjustment
+  const Float_t  kEkinMinStep = 1.0e-5;
   // Plateau value of the energy-loss for electron in xenon
   // taken from: Allison + Comb, Ann. Rev. Nucl. Sci. (1980), 30, 253
   //const Double_t kPlateau = 1.70;
   // the averaged value (26/3/99)
-  const Float_t  kPlateau = 1.55;
+  const Float_t  kPlateau     = 1.55;
   // dN1/dx|min for the gas mixture (90% Xe + 10% CO2)
-  const Float_t  kPrim    = 48.0;
+  const Float_t  kPrim        = 48.0;
   // First ionization potential (eV) for the gas mixture (90% Xe + 10% CO2)
-  const Float_t  kPoti    = 12.1;
+  const Float_t  kPoti        = 12.1;
 
   // PDG code electron
   const Int_t    kPdgElectron = 11;
@@ -554,30 +556,29 @@ void AliTRDv1::StepManager()
   // neutral particles and those outside the driftvolume
   gMC->SetMaxStep(kBig); 
 
-  // Create some special hits with amplitude 0 at the entrance and
-  // exit of each chamber that contain the momentum components of the particle
-  if (gMC->TrackCharge() &&
-     (gMC->IsTrackEntering() || gMC->IsTrackExiting())) {
+  // Use only charged tracks 
+  if (( gMC->TrackCharge()       ) &&
+      (!gMC->IsTrackStop()       ) && 
+      (!gMC->IsTrackDisappeared())) {
 
     // Inside a sensitive volume?
-    iIdSens = gMC->CurrentVolID(icSens);
-    if (iIdSens == fIdSens) { 
-
-      iIdSpace   = gMC->CurrentVolOffID(4,icSpace  );
-      iIdChamber = gMC->CurrentVolOffID(1,icChamber);
+    drRegion = kFALSE;
+    amRegion = kFALSE;
+    cIdCurrent = gMC->CurrentVolName();
+    if (cIdCurrent[1] == cIdSensDr) {
+      drRegion = kTRUE;
+    }
+    if (cIdCurrent[1] == cIdSensAm) {
+      amRegion = kTRUE;
+    }
+    if (drRegion || amRegion) {
 
-      // The hit coordinates
+      // The hit coordinates and charge
       gMC->TrackPosition(pos);
       hits[0] = pos[0];
       hits[1] = pos[1];
       hits[2] = pos[2];
 
-      // The track momentum
-      gMC->TrackMomentum(mom);
-      moms[0] = mom[0];
-      moms[1] = mom[1];
-      moms[2] = mom[2];
-
       // The sector number (0 - 17)
       // The numbering goes clockwise and starts at y = 0
       Float_t phi = kRaddeg*TMath::ATan2(pos[0],pos[1]);
@@ -587,22 +588,12 @@ void AliTRDv1::StepManager()
         phi = phi -  90.;
       sec = ((Int_t) (phi / 20));
 
-      // The chamber number 
-      //   0: outer left
-      //   1: middle left
-      //   2: inner
-      //   3: middle right
-      //   4: outer right
-      if      (iIdChamber == fIdChamber1)
-        cha = (hits[2] < 0 ? 0 : 4);
-      else if (iIdChamber == fIdChamber2)       
-        cha = (hits[2] < 0 ? 1 : 3);
-      else if (iIdChamber == fIdChamber3)       
-        cha = 2;
-
-      // The plane number
-      // The numbering starts at the innermost plane
-      pla = icChamber - TMath::Nint((Float_t) (icChamber / 7)) * 6 - 1;
+      // The plane and chamber number
+      cIdChamber[0] = cIdCurrent[2];
+      cIdChamber[1] = cIdCurrent[3];
+      Int_t idChamber = atoi(cIdChamber);
+      cha = ((Int_t) idChamber / kNplan);
+      pla = ((Int_t) idChamber % kNplan);
 
       // Check on selected volumes
       Int_t addthishit = 1;
@@ -625,133 +616,77 @@ void AliTRDv1::StepManager()
 
       // Add this hit
       if (addthishit) {
-        det = fGeometry->GetDetector(pla,cha,sec);
-        new(lhits[fNhits++]) AliTRDhit(fIshunt
-                                      ,gAlice->CurrentTrack()
-                                      ,det
-                                      ,moms
-                                      ,0);
-      }
 
-    }
+       // The detector number
+        det = fGeometry->GetDetector(pla,cha,sec);
 
-  }
+       // Special hits and TR photons only in the drift region
+        if (drRegion) {
 
-  // Use only charged tracks 
-  if (( gMC->TrackCharge()       ) &&
-      (!gMC->IsTrackStop()       ) && 
-      (!gMC->IsTrackDisappeared())) {
+          // Create some special hits with amplitude 0 at the entrance and
+          // exit of each chamber that contain the momentum components of the particle
+          if (gMC->IsTrackEntering() || gMC->IsTrackExiting()) {
+            gMC->TrackMomentum(mom);
+            moms[0] = mom[0];
+            moms[1] = mom[1];
+            moms[2] = mom[2];
+            AddHit(gAlice->CurrentTrack(),det,moms,0,kTRUE);
+            AddHit(gAlice->CurrentTrack(),det,hits,0,kTRUE); 
+          }
 
-    // Inside a sensitive volume?
-    iIdSens = gMC->CurrentVolID(icSens);
-    if (iIdSens == fIdSens) { 
+          // Create the hits from TR photons
+          if (fTR) CreateTRhit(det);
 
-      iIdSpace   = gMC->CurrentVolOffID(4,icSpace  );
-      iIdChamber = gMC->CurrentVolOffID(1,icChamber);
+       }
 
-      // Calculate the energy of the delta-electrons
-      eDelta = TMath::Exp(fDeltaE->GetRandom()) - kPoti;
-      eDelta = TMath::Max(eDelta,0.0);
+        // Calculate the energy of the delta-electrons
+        eDelta = TMath::Exp(fDeltaE->GetRandom()) - kPoti;
+        eDelta = TMath::Max(eDelta,0.0);
 
-      // The number of secondary electrons created
-      qTot = ((Int_t) (eDelta / kWion) + 1);
+        // The number of secondary electrons created
+        qTot = ((Int_t) (eDelta / kWion) + 1);
 
-      // The hit coordinates and charge
-      gMC->TrackPosition(pos);
-      hits[0] = pos[0];
-      hits[1] = pos[1];
-      hits[2] = pos[2];
-
-      // The sector number (0 - 17)
-      // The numbering goes clockwise and starts at y = 0
-      Float_t phi = kRaddeg*TMath::ATan2(pos[0],pos[1]);
-      if (phi < 90.) 
-        phi = phi + 270.;
-      else
-        phi = phi -  90.;
-      sec = ((Int_t) (phi / 20));
-
-      // The chamber number 
-      //   0: outer left
-      //   1: middle left
-      //   2: inner
-      //   3: middle right
-      //   4: outer right
-      if      (iIdChamber == fIdChamber1)
-        cha = (hits[2] < 0 ? 0 : 4);
-      else if (iIdChamber == fIdChamber2)       
-        cha = (hits[2] < 0 ? 1 : 3);
-      else if (iIdChamber == fIdChamber3)       
-        cha = 2;
-
-      // The plane number
-      // The numbering starts at the innermost plane
-      pla = icChamber - TMath::Nint((Float_t) (icChamber / 7)) * 6 - 1;
+       // Create a new dEdx hit
+        if (drRegion) {
+          AddHit(gAlice->CurrentTrack(),det,hits,qTot,kTRUE);       
+       }
+        else {
+          AddHit(gAlice->CurrentTrack(),det,hits,qTot,kFALSE);      
+       }
 
-      // Check on selected volumes
-      Int_t addthishit = 1;
-      if (fSensSelect) {
-        if ((fSensPlane   >= 0) && (pla != fSensPlane  )) addthishit = 0;
-        if ((fSensChamber >= 0) && (cha != fSensChamber)) addthishit = 0;
-        if (fSensSector  >= 0) {
-          Int_t sens1  = fSensSector;
-          Int_t sens2  = fSensSector + fSensSectorRange;
-                sens2 -= ((Int_t) (sens2 / AliTRDgeometry::Nsect())) 
-                       * AliTRDgeometry::Nsect();
-          if (sens1 < sens2) {
-            if ((sec < sens1) || (sec >= sens2)) addthishit = 0;
-         }
+        // Calculate the maximum step size for the next tracking step
+       // Produce only one hit if Ekin is below cutoff 
+        aMass = gMC->TrackMass();
+        if ((gMC->Etot() - aMass) > kEkinMinStep) {
+
+          // The energy loss according to Bethe Bloch
+          iPdg  = TMath::Abs(gMC->TrackPid());
+          if ( (iPdg != kPdgElectron) ||
+             ((iPdg == kPdgElectron) && (pTot < kPTotMaxEl))) {
+            gMC->TrackMomentum(mom);
+            pTot      = mom.Rho();
+            betaGamma = pTot / aMass;
+            pp        = kPrim * BetheBloch(betaGamma);
+           // Take charge > 1 into account
+            charge = gMC->TrackCharge();
+            if (TMath::Abs(charge) > 1) pp = pp * charge*charge;
+          }
+          // Electrons above 20 Mev/c are at the plateau
           else {
-            if ((sec < sens1) && (sec >= sens2)) addthishit = 0;
+            pp = kPrim * kPlateau;
+          }
+      
+          if (pp > 0) {
+            do 
+              gMC->Rndm(random,1);
+            while ((random[0] == 1.) || (random[0] == 0.));
+            stepSize = - TMath::Log(random[0]) / pp; 
+            gMC->SetMaxStep(stepSize);
          }
-       }
-      }
-
-      // Add this hit
-      if (addthishit) {
-
-        det = fGeometry->GetDetector(pla,cha,sec);
 
-        // Create the electron cluster from TR photons
-        if (fTR) CreateTRhit(det);
-
-        new(lhits[fNhits++]) AliTRDhit(fIshunt
-                                      ,gAlice->CurrentTrack()
-                                      ,det
-                                      ,hits
-                                      ,qTot);
-
-        // The energy loss according to Bethe Bloch
-        gMC->TrackMomentum(mom);
-        pTot = mom.Rho();
-        iPdg = TMath::Abs(gMC->TrackPid());
-        if ( (iPdg != kPdgElectron) ||
-           ((iPdg == kPdgElectron) && (pTot < kPTotMax))) {
-          aMass     = gMC->TrackMass();
-          betaGamma = pTot / aMass;
-          pp        = kPrim * BetheBloch(betaGamma);
-         // Take charge > 1 into account
-          charge = gMC->TrackCharge();
-          if (TMath::Abs(charge) > 1) pp = pp * charge*charge;
-        }
-        // Electrons above 20 Mev/c are at the plateau
-        else {
-          pp = kPrim * kPlateau;
-        }
-      
-        // Calculate the maximum step size for the next tracking step
-        if (pp > 0) {
-          do 
-            gMC->Rndm(random,1);
-          while ((random[0] == 1.) || (random[0] == 0.));
-          gMC->SetMaxStep( - TMath::Log(random[0]) / pp);
        }
 
       }
-      else {
-        // set step size to maximal value
-        gMC->SetMaxStep(kBig); 
-      }
 
     }
 
@@ -782,15 +717,24 @@ Double_t AliTRDv1::BetheBloch(Double_t bg)
   //const Double_t kP4 = 1.8631;
   //const Double_t kP5 = 1.9479;
 
-  if (bg > 0) {
+  // Lower cutoff of the Bethe-Bloch-curve to limit step sizes
+  const Double_t kBgMin = 0.8;
+  const Double_t kBBMax = 6.83298;
+  //const Double_t kBgMin = 0.6;
+  //const Double_t kBBMax = 17.2809;
+  //const Double_t kBgMin = 0.4;
+  //const Double_t kBBMax = 82.0;
+
+  if (bg > kBgMin) {
     Double_t yy = bg / TMath::Sqrt(1. + bg*bg);
     Double_t aa = TMath::Power(yy,kP4);
     Double_t bb = TMath::Power((1./bg),kP5);
              bb = TMath::Log(kP3 + bb);
     return ((kP2 - aa - bb)*kP1 / aa);
   }
-  else
-    return 0;
+  else {
+    return kBBMax;
+  }
 
 }
 
@@ -836,7 +780,7 @@ Double_t Ermilova(Double_t *x, Double_t *)
   } 
   while (dpos > 0);
   pos2--; 
-  if (pos2 > kNv) pos2 = kNv;
+  if (pos2 > kNv) pos2 = kNv - 1;
   pos1 = pos2 - 1;
 
   // Differentiate between the sampling points