]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDv1.cxx
Summ of G10 components normalized to one
[u/mrichter/AliRoot.git] / TRD / AliTRDv1.cxx
index 9b3be44f71c39f86be1ecfa4e0ab4317766a4838..c269d434d64e131ce452bf9e68f0827159f9a13a 100644 (file)
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
+/* $Id$ */
+
 ///////////////////////////////////////////////////////////////////////////////
 //                                                                           //
-//  Transition Radiation Detector version 1 -- coarse simulation             //
-//  This version has two detector arms, leaving the space in front of the    //
-//  HMPID and PHOS empty                                                     //
+//  Transition Radiation Detector version 1 -- slow simulator                //
 //                                                                           //
 //Begin_Html
 /*
-<img src="gif/AliTRDv1Class.gif">
+<img src="picts/AliTRDfullClass.gif">
 */
 //End_Html
 //                                                                           //
 //                                                                           //
 ///////////////////////////////////////////////////////////////////////////////
 
+#include <stdlib.h> 
+
+#include <TF1.h>
+#include <TLorentzVector.h>
 #include <TMath.h>
 #include <TRandom.h>
 #include <TVector.h>
+#include <TVirtualMC.h>
 
-#include "AliTRDv1.h"
+#include "AliConst.h"
 #include "AliRun.h"
+#include "AliTRDgeometry.h"
+#include "AliTRDhit.h"
+#include "AliTRDsim.h"
+#include "AliTRDv1.h"
 #include "AliMC.h"
-#include "AliConst.h"
+
 ClassImp(AliTRDv1)
+//_____________________________________________________________________________
+AliTRDv1::AliTRDv1():AliTRD()
+{
+  //
+  // Default constructor
+  //
+
+  fSensSelect        =  0;
+  fSensPlane         = -1;
+  fSensChamber       = -1;
+  fSensSector        = -1;
+  fSensSectorRange   =  0;
+
+  fDeltaE            = NULL;
+  fDeltaG            = NULL;
+  fTR                = NULL;
+
+  fStepSize          = 0.1;
+  fTypeOfStepManager = 2;
+
+}
 
 //_____________________________________________________________________________
 AliTRDv1::AliTRDv1(const char *name, const char *title) 
          :AliTRD(name, title) 
 {
   //
-  // Standard constructor for the Transition Radiation Detector version 1
+  // Standard constructor for Transition Radiation Detector version 1
   //
-  fIdSens1 = fIdSens2 = fIdSens3 = 0;
+
+  fSensSelect        =  0;
+  fSensPlane         = -1;
+  fSensChamber       = -1;
+  fSensSector        = -1;
+  fSensSectorRange   =  0;
+
+  fDeltaE            = NULL;
+  fDeltaG            = NULL;
+  fTR                = NULL;
+  fStepSize          = 0.1;
+  fTypeOfStepManager = 2;
+
+  SetBufferSize(128000);
+
+}
+
+//_____________________________________________________________________________
+AliTRDv1::AliTRDv1(const AliTRDv1 &trd):AliTRD(trd)
+{
+  //
+  // Copy constructor
+  //
+
+  ((AliTRDv1 &) trd).Copy(*this);
+
+}
+
+//_____________________________________________________________________________
+AliTRDv1::~AliTRDv1()
+{
+  //
+  // AliTRDv1 destructor
+  //
+
+  if (fDeltaE) delete fDeltaE;
+  if (fDeltaG) delete fDeltaG;
+  if (fTR)     delete fTR;
+
 }
  
 //_____________________________________________________________________________
-void AliTRDv1::CreateGeometry()
+AliTRDv1 &AliTRDv1::operator=(const AliTRDv1 &trd)
 {
   //
-  // Create the geometry for the Transition Radiation Detector version 1
-  // --- The coarse geometry of the TRD, that can be used for background 
-  //     studies. This version leaves the space in front of the PHOS and 
-  //     HMPID empty. 
-  // --- Author :  Christoph Blume (GSI) 18/5/99 
-  //
-  // --- Volume names : 
-  //     TRD       --> Mother TRD volume                                     (Air)
-  //     UTRD      --> The detector arms                                     (Al)
-  //     UTRS      --> Sectors of the sub-detector                           (Al)
-  //     UTRI      --> Inner part of the detector frame                      (Air) 
-  //     UTCI(N,O) --> Frames of the inner, neighbouring and outer chambers  (C) 
-  //     UTII(N,O) --> Inner part of the chambers                            (Air) 
-  //     UTMI(N,O) --> Modules in the chambers                               (Air) 
-  //     UT0I(N,O) --> Radiator seal                                         (G10)
-  //     UT1I(N,O) --> Radiator                                              (CO2)
-  //     UT2I(N,O) --> Polyethylene of radiator                              (PE)
-  //     UT3I(N,O) --> Entrance window                                       (Mylar)
-  //     UT4I(N,O) --> Gas volume (sensitive)                                (Xe/Isobutane)
-  //     UT5I(N,O) --> Pad plane                                             (Cu)
-  //     UT6I(N,O) --> Support structure                                     (G10)
-  //     UT7I(N,O) --> FEE + signal lines                                    (Cu)
-  //     UT8I(N,O) --> Polyethylene of cooling device                        (PE)
-  //     UT9I(N,O) --> Cooling water                                         (Water)
-  //
-  //Begin_Html
-  /*
-    <img src="gif/AliTRDv1.gif">
-  */
-  //End_Html
-  //Begin_Html
-  /*
-    <img src="gif/AliTRDv1Tree.gif">
-  */
-  //End_Html
-
-  Float_t xpos, ypos, zpos, f;
-  Int_t   idmat[5];
-
-  const Int_t nparmo = 10;
-  const Int_t nparar = 10;
-  const Int_t nparfr =  4;
-  const Int_t nparic =  4;
-  const Int_t nparnc =  4;
-  const Int_t nparoc = 11;
-
-  Float_t par_mo[nparmo];
-  Float_t par_ar[nparar];
-  Float_t par_fr[nparfr];
-  Float_t par_ic[nparic];
-  Float_t par_nc[nparnc];
-  Float_t par_oc[nparoc];
-  
-  Int_t *idtmed = gAlice->Idtmed();
-  
-  AliMC* pMC = AliMC::GetMC();
-  
-  //////////////////////////////////////////////////////////////////////////
-  //     Definition of Volumes   
-  //////////////////////////////////////////////////////////////////////////
-
-  // Definition of the mother volume for the TRD (Air) 
-  par_mo[0] =   0.;
-  par_mo[1] = 360.;
-  par_mo[2] = nsect;
-  par_mo[3] = 2.;
-  par_mo[4] = -zmax1;
-  par_mo[5] = rmin;
-  par_mo[6] = rmax;
-  par_mo[7] =  zmax1;
-  par_mo[8] = rmin;
-  par_mo[9] = rmax;
-  pMC->Gsvolu("TRD ", "PGON", idtmed[1302-1], par_mo, nparmo);
-  
-  Float_t phisec = 360. / nsect;   
-  // Definition of the two detector arms (Al) 
-  par_ar[0] = 120.;
-  par_ar[1] = narmsec * phisec;
-  par_ar[2] = narmsec;
-  par_ar[3] = 2.;
-  par_ar[4] = -zmax1;
-  par_ar[5] = rmin;
-  par_ar[6] = rmax;
-  par_ar[7] =  zmax1;
-  par_ar[8] = rmin;
-  par_ar[9] = rmax;
-  pMC->Gsvolu("UTRD", "PGON", idtmed[1301-1], par_ar, nparar);
-  pMC->Gsdvn("UTRS", "UTRD", narmsec, 2);
-
-  // The minimal width of a sector in rphi-direction
-  Float_t widmi = rmin * TMath::Sin(kPI/nsect);
-  // The maximal width of a sector in rphi-direction
-  Float_t widma = rmax * TMath::Sin(kPI/nsect);
-  // The total thickness of the spaceframe (Al + Air)
-  Float_t frame = widmi - (widpl1 / 2);
-
-  // Definition of the inner part of the detector frame (Air) 
-  par_fr[0] = widmi - alframe / 2;
-  par_fr[1] = widma - alframe / 2;
-  par_fr[2] = zmax1;
-  par_fr[3] = (rmax - rmin) / 2;
-  pMC->Gsvolu("UTRI", "TRD1", idtmed[1302-1], par_fr, nparfr); 
-
-  // 
-  // The outer chambers
-  //
-
-  // Calculate some shape-parameter
-  Float_t tanzr = (zmax1 - zmax2) / (rmax - rmin);
-  Float_t theoc = -kRaddeg * TMath::ATan(tanzr / 2);
-
-  // The carbon frame (C)
-  par_oc[0]  = (rmax - rmin) / 2;
-  par_oc[1]  = theoc;
-  par_oc[2]  = 90.;
-  par_oc[3]  = (zmax2 - zlenn - zleni/2)   / 2;
-  par_oc[4]  = widmi - frame;
-  par_oc[5]  = widmi - frame;
-  par_oc[6]  = 0.;
-  par_oc[7]  = (zmax1 - zlenn - zleni/2)   / 2;
-  par_oc[8]  = widma - frame;
-  par_oc[9]  = widma - frame;
-  par_oc[10] = 0.;
-  pMC->Gsvolu("UTCO", "TRAP", idtmed[1307-1], par_oc, nparoc);
-
-  // The inner part (Air) 
-  par_oc[3] -= ccframe;
-  par_oc[4] -= ccframe;
-  par_oc[5] -= ccframe; 
-  par_oc[7] -= ccframe;
-  par_oc[8] -= ccframe;
-  par_oc[9] -= ccframe;
-  pMC->Gsvolu("UTIO", "TRAP", idtmed[1302-1], par_oc, nparoc);
-
-  // Definition of the six modules within each chamber 
-  pMC->Gsdvn("UTMO", "UTIO", nmodul, 3);
-
-  // Definition of the layers of each chamber 
-  par_oc[1]  =  theoc;
-  par_oc[2]  =  90.;
-  par_oc[3]  = -1.;
-  par_oc[4]  = -1.;
-  par_oc[5]  = -1.;
-  par_oc[6]  =  0.;
-  par_oc[7]  = -1.;
-  par_oc[8]  = -1.;
-  par_oc[9]  = -1.;
-  par_oc[10] =  0.;
-  // G10 layer (radiator layer)
-  par_oc[0] = sethick / 2;
-  pMC->Gsvolu("UT0O", "TRAP", idtmed[1313-1], par_oc, nparoc);
-  // CO2 layer (radiator)
-  par_oc[0] = rathick / 2;
-  pMC->Gsvolu("UT1O", "TRAP", idtmed[1312-1], par_oc, nparoc);
-  // PE layer (radiator)
-  par_oc[0] = pethick / 2;
-  pMC->Gsvolu("UT2O", "TRAP", idtmed[1303-1], par_oc, nparoc);
-  // Mylar layer (entrance window + HV cathode) 
-  par_oc[0] = mythick / 2;
-  pMC->Gsvolu("UT3O", "TRAP", idtmed[1308-1], par_oc, nparoc);
-  // Xe/Isobutane layer (gasvolume)
-  par_oc[0] = xethick / 2;
-  pMC->Gsvolu("UT4O", "TRAP", idtmed[1309-1], par_oc, nparoc);
-  // Cu layer (pad plane)
-  par_oc[0] = cuthick / 2;
-  pMC->Gsvolu("UT5O", "TRAP", idtmed[1305-1], par_oc, nparoc);
-  // G10 layer (support structure)
-  par_oc[0] = suthick / 2;
-  pMC->Gsvolu("UT6O", "TRAP", idtmed[1313-1], par_oc, nparoc);
-  // Cu layer (FEE + signal lines)
-  par_oc[0] = fethick / 2;
-  pMC->Gsvolu("UT7O", "TRAP", idtmed[1305-1], par_oc, nparoc);
-  // PE layer (cooling devices)
-  par_oc[0] = cothick / 2;
-  pMC->Gsvolu("UT8O", "TRAP", idtmed[1303-1], par_oc, nparoc);
-  // Water layer (cooling)
-  par_oc[0] = wathick / 2;
-  pMC->Gsvolu("UT9O", "TRAP", idtmed[1314-1], par_oc, nparoc);
-
-  //
-  // The neighbouring chambers
-  //
-
-  // The carbon frame (C) 
-  par_nc[0] = widmi - frame;
-  par_nc[1] = widma - frame;
-  par_nc[2] = zlenn / 2;
-  par_nc[3] = (rmax - rmin) / 2;
-  pMC->Gsvolu("UTCN", "TRD1", idtmed[1307-1], par_nc, nparnc);
-
-  // The inner part (Air) 
-  par_nc[0] -= ccframe;
-  par_nc[1] -= ccframe;
-  par_nc[2] -= ccframe;
-  pMC->Gsvolu("UTIN", "TRD1", idtmed[1302-1], par_nc, nparnc);
-
-  // Definition of the six modules within each outer chamber 
-  pMC->Gsdvn("UTMN", "UTIN", nmodul, 3);
-
-  // Definition of the layers of each chamber 
-  par_nc[0] = -1.;
-  par_nc[1] = -1.;
-  par_nc[2] = -1.;
-  // G10 layer (radiator layer)
-  par_nc[3] = sethick / 2;
-  pMC->Gsvolu("UT0N", "TRD1", idtmed[1313-1], par_nc, nparnc);
-  // CO2 layer (radiator)
-  par_nc[3] = rathick / 2;
-  pMC->Gsvolu("UT1N", "TRD1", idtmed[1312-1], par_nc, nparnc);
-  // PE layer (radiator)
-  par_nc[3] = pethick / 2;
-  pMC->Gsvolu("UT2N", "TRD1", idtmed[1303-1], par_nc, nparnc);
-  // Mylar layer (entrance window + HV cathode) 
-  par_nc[3] = mythick / 2;
-  pMC->Gsvolu("UT3N", "TRD1", idtmed[1308-1], par_nc, nparnc);
-  // Xe/Isobutane layer (gasvolume)
-  par_nc[3] = xethick / 2;
-  pMC->Gsvolu("UT4N", "TRD1", idtmed[1309-1], par_nc, nparnc);
-  // Cu layer (pad plane)
-  par_nc[3] = cuthick / 2;
-  pMC->Gsvolu("UT5N", "TRD1", idtmed[1305-1], par_nc, nparnc);
-  // G10 layer (support structure)
-  par_nc[3] = suthick / 2;
-  pMC->Gsvolu("UT6N", "TRD1", idtmed[1313-1], par_nc, nparnc);
-  // Cu layer (FEE + signal lines)
-  par_nc[3] = fethick / 2;
-  pMC->Gsvolu("UT7N", "TRD1", idtmed[1305-1], par_nc, nparnc);
-  // PE layer (cooling devices)
-  par_nc[3] = cothick / 2;
-  pMC->Gsvolu("UT8N", "TRD1", idtmed[1303-1], par_nc, nparnc);
-  // Water layer (cooling)
-  par_nc[3] = wathick / 2;
-  pMC->Gsvolu("UT9N", "TRD1", idtmed[1314-1], par_nc, nparnc);
-
-  //
-  // The inner chamber
-  //
-
-  // The carbon frame (C) 
-  par_ic[0] = widmi - frame;
-  par_ic[1] = widma - frame;
-  par_ic[2] = zleni / 2;
-  par_ic[3] = (rmax - rmin) / 2;
-  pMC->Gsvolu("UTCI", "TRD1", idtmed[1307-1], par_ic, nparic);
-
-  // The inner part (Air) 
-  par_ic[0] -= ccframe;
-  par_ic[1] -= ccframe;
-  par_ic[2] -= ccframe;
-  pMC->Gsvolu("UTII", "TRD1", idtmed[1302-1], par_ic, nparic);
-
-  // Definition of the six modules within each outer chamber 
-  pMC->Gsdvn("UTMI", "UTII", nmodul, 3);
-
-  // Definition of the layers of each inner chamber 
-  par_ic[0] = -1.;
-  par_ic[1] = -1.;
-  par_ic[2] = -1.;
-  // G10 layer (radiator layer)
-  par_ic[3] = sethick / 2;
-  pMC->Gsvolu("UT0I", "TRD1", idtmed[1313-1], par_ic, nparic);
-  // CO2 layer (radiator)
-  par_ic[3] = rathick / 2;
-  pMC->Gsvolu("UT1I", "TRD1", idtmed[1312-1], par_ic, nparic);
-  // PE layer (radiator)
-  par_ic[3] = pethick / 2;
-  pMC->Gsvolu("UT2I", "TRD1", idtmed[1303-1], par_ic, nparic);
-  // Mylar layer (entrance window + HV cathode) 
-  par_ic[3] = mythick / 2;
-  pMC->Gsvolu("UT3I", "TRD1", idtmed[1308-1], par_ic, nparic);
-  // Xe/Isobutane layer (gasvolume)
-  par_ic[3] = xethick / 2;
-  pMC->Gsvolu("UT4I", "TRD1", idtmed[1309-1], par_ic, nparic);
-  // Cu layer (pad plane)
-  par_ic[3] = cuthick / 2;
-  pMC->Gsvolu("UT5I", "TRD1", idtmed[1305-1], par_ic, nparic);
-  // G10 layer (support structure)
-  par_ic[3] = suthick / 2;
-  pMC->Gsvolu("UT6I", "TRD1", idtmed[1313-1], par_ic, nparic);
-  // Cu layer (FEE + signal lines)
-  par_ic[3] = fethick / 2;
-  pMC->Gsvolu("UT7I", "TRD1", idtmed[1305-1], par_ic, nparic);
-  // PE layer (cooling devices)
-  par_ic[3] = cothick / 2;
-  pMC->Gsvolu("UT8I", "TRD1", idtmed[1303-1], par_ic, nparic);
-  // Water layer (cooling)
-  par_ic[3] = wathick / 2;
-  pMC->Gsvolu("UT9I", "TRD1", idtmed[1314-1], par_ic, nparic);
-
-  //////////////////////////////////////////////////////////////////////////
-  //     Positioning of Volumes 
-  //////////////////////////////////////////////////////////////////////////
-
-  // The rotation matrices 
-  AliMatrix(idmat[0],  90., 180.,  90.,  90.,   0.,   0.);
-  AliMatrix(idmat[1],  90.,  90., 180.,   0.,  90.,   0.);
-  AliMatrix(idmat[2],  90., 180.,  90., 270.,   0.,   0.);
-
-  // Position of the layers in a TRD module 
-  f = TMath::Tan(theoc * kDegrad);
-  pMC->Gspos("UT9O", 1, "UTMO", 0., f*wazpos, wazpos, 0, "ONLY");
-  pMC->Gspos("UT8O", 1, "UTMO", 0., f*cozpos, cozpos, 0, "ONLY");
-  pMC->Gspos("UT7O", 1, "UTMO", 0., f*fezpos, fezpos, 0, "ONLY");
-  pMC->Gspos("UT6O", 1, "UTMO", 0., f*suzpos, suzpos, 0, "ONLY");
-  pMC->Gspos("UT5O", 1, "UTMO", 0., f*cuzpos, cuzpos, 0, "ONLY");
-  pMC->Gspos("UT4O", 1, "UTMO", 0., f*xezpos, xezpos, 0, "ONLY");
-  pMC->Gspos("UT3O", 1, "UTMO", 0., f*myzpos, myzpos, 0, "ONLY");
-  pMC->Gspos("UT1O", 1, "UTMO", 0., f*razpos, razpos, 0, "ONLY");
-  pMC->Gspos("UT0O", 1, "UTMO", 0., f*sezpos, sezpos, 0, "ONLY");
-  pMC->Gspos("UT2O", 1, "UT1O", 0., f*pezpos, pezpos, 0, "ONLY");
-
-  pMC->Gspos("UT9N", 1, "UTMN", 0.,       0., wazpos, 0, "ONLY");
-  pMC->Gspos("UT8N", 1, "UTMN", 0.,       0., cozpos, 0, "ONLY");
-  pMC->Gspos("UT7N", 1, "UTMN", 0.,       0., fezpos, 0, "ONLY");
-  pMC->Gspos("UT6N", 1, "UTMN", 0.,       0., suzpos, 0, "ONLY");
-  pMC->Gspos("UT5N", 1, "UTMN", 0.,       0., cuzpos, 0, "ONLY");
-  pMC->Gspos("UT4N", 1, "UTMN", 0.,       0., xezpos, 0, "ONLY");
-  pMC->Gspos("UT3N", 1, "UTMN", 0.,       0., myzpos, 0, "ONLY");
-  pMC->Gspos("UT1N", 1, "UTMN", 0.,       0., razpos, 0, "ONLY");
-  pMC->Gspos("UT0N", 1, "UTMN", 0.,       0., sezpos, 0, "ONLY");
-  pMC->Gspos("UT2N", 1, "UT1N", 0.,       0., pezpos, 0, "ONLY");
-
-  pMC->Gspos("UT9I", 1, "UTMI", 0.,       0., wazpos, 0, "ONLY");
-  pMC->Gspos("UT8I", 1, "UTMI", 0.,       0., cozpos, 0, "ONLY");
-  pMC->Gspos("UT7I", 1, "UTMI", 0.,       0., fezpos, 0, "ONLY");
-  pMC->Gspos("UT6I", 1, "UTMI", 0.,       0., suzpos, 0, "ONLY");
-  pMC->Gspos("UT5I", 1, "UTMI", 0.,       0., cuzpos, 0, "ONLY");
-  pMC->Gspos("UT4I", 1, "UTMI", 0.,       0., xezpos, 0, "ONLY");
-  pMC->Gspos("UT3I", 1, "UTMI", 0.,       0., myzpos, 0, "ONLY");
-  pMC->Gspos("UT1I", 1, "UTMI", 0.,       0., razpos, 0, "ONLY");
-  pMC->Gspos("UT0I", 1, "UTMI", 0.,       0., sezpos, 0, "ONLY");
-  pMC->Gspos("UT2I", 1, "UT1I", 0.,       0., pezpos, 0, "ONLY");
-
-  // Position of the inner part of the chambers 
-  xpos = 0.;
-  ypos = 0.;
-  zpos = 0.;
-  pMC->Gspos("UTII", 1, "UTCI", xpos, ypos, zpos, 0, "ONLY");
-  pMC->Gspos("UTIN", 1, "UTCN", xpos, ypos, zpos, 0, "ONLY");
-  pMC->Gspos("UTIO", 1, "UTCO", xpos, ypos, zpos, 0, "ONLY");
-
-  // Position of the chambers in the support frame 
-  xpos = 0.;
-  ypos = ((zmax1 + zmax2) / 2 + zlenn + zleni / 2) / 2;
-  zpos = 0.;
-  pMC->Gspos("UTCO", 1, "UTRI", xpos, ypos, zpos, idmat[2], "ONLY");
-  pMC->Gspos("UTCO", 2, "UTRI", xpos,-ypos, zpos,       0 , "ONLY");
-  xpos = 0.;
-  ypos = (zlenn + zleni) / 2;
-  zpos = 0.;
-  pMC->Gspos("UTCN", 1, "UTRI", xpos, ypos, zpos,       0 , "ONLY");
-  pMC->Gspos("UTCN", 2, "UTRI", xpos,-ypos, zpos,       0 , "ONLY");
-  xpos = 0.;
-  ypos = 0.;
-  zpos = 0.;
-  pMC->Gspos("UTCI", 1, "UTRI", xpos, ypos, zpos,       0 , "ONLY");
-
-  // Position of the inner part of the detector frame
-  xpos = (rmax + rmin) / 2;
-  ypos = 0.;
-  zpos = 0.;
-  pMC->Gspos("UTRI", 1, "UTRS", xpos, ypos, zpos, idmat[1], "ONLY");
-
-  // Position of the two arms of the detector
-  xpos = 0.;
-  ypos = 0.;
-  zpos = 0.;
-  pMC->Gspos("UTRD", 1, "TRD ", xpos, ypos, zpos,        0, "ONLY");
-  pMC->Gspos("UTRD", 2, "TRD ", xpos, ypos, zpos, idmat[0], "ONLY");
-
-  // Position of TRD mother volume in ALICE experiment 
-  xpos = 0.;
-  ypos = 0.;
-  zpos = 0.;
-  pMC->Gspos("TRD ", 1, "ALIC", xpos, ypos, zpos,        0, "ONLY");
+  // Assignment operator
+  //
+
+  if (this != &trd) ((AliTRDv1 &) trd).Copy(*this);
+  return *this;
 
 }
  
 //_____________________________________________________________________________
-void AliTRDv1::DrawModule()
+void AliTRDv1::Copy(TObject &trd)
 {
   //
-  // Draw a shaded view of the Transition Radiation Detector version 1
+  // Copy function
   //
 
-  AliMC* pMC = AliMC::GetMC();
-  
-  // Set everything unseen
-  pMC->Gsatt("*", "seen", -1);
-  // 
-  // Set ALIC mother transparent
-  pMC->Gsatt("ALIC","SEEN",0);
-  //
-  // Set the volumes visible
-  pMC->Gsatt("TRD" ,"SEEN",0);
-  pMC->Gsatt("UTRD","SEEN",0);
-  pMC->Gsatt("UTRS","SEEN",0);
-  pMC->Gsatt("UTRI","SEEN",0);
-  pMC->Gsatt("UTCO","SEEN",0);
-  pMC->Gsatt("UTIO","SEEN",0);
-  pMC->Gsatt("UTMO","SEEN",0);
-  pMC->Gsatt("UTCN","SEEN",0);
-  pMC->Gsatt("UTIN","SEEN",0);
-  pMC->Gsatt("UTMN","SEEN",0);
-  pMC->Gsatt("UTCI","SEEN",0);
-  pMC->Gsatt("UTII","SEEN",0);
-  pMC->Gsatt("UTMI","SEEN",0);
-  pMC->Gsatt("UT1O","SEEN",1);
-  pMC->Gsatt("UT4O","SEEN",1);
-  pMC->Gsatt("UT1N","SEEN",1);
-  pMC->Gsatt("UT4N","SEEN",1);
-  pMC->Gsatt("UT1I","SEEN",1);
-  pMC->Gsatt("UT4I","SEEN",1);
-  //
-  pMC->Gdopt("hide", "on");
-  pMC->Gdopt("shad", "on");
-  pMC->Gsatt("*", "fill", 7);
-  pMC->SetClipBox(".");
-  pMC->SetClipBox("*", 0, 2000, -2000, 2000, -2000, 2000);
-  pMC->DefaultRange();
-  pMC->Gdraw("alic", 40, 30, 0, 12, 9.4, .021, .021);
-  pMC->Gdhead(1111, "Transition Radiation Detector Version 1");
-  pMC->Gdman(18, 4, "MAN");
+  ((AliTRDv1 &) trd).fSensSelect        = fSensSelect;
+  ((AliTRDv1 &) trd).fSensPlane         = fSensPlane;
+  ((AliTRDv1 &) trd).fSensChamber       = fSensChamber;
+  ((AliTRDv1 &) trd).fSensSector        = fSensSector;
+  ((AliTRDv1 &) trd).fSensSectorRange   = fSensSectorRange;
+
+  ((AliTRDv1 &) trd).fTypeOfStepManager = fTypeOfStepManager;
+  ((AliTRDv1 &) trd).fStepSize          = fStepSize;
+
+  fDeltaE->Copy(*((AliTRDv1 &) trd).fDeltaE);
+  fDeltaG->Copy(*((AliTRDv1 &) trd).fDeltaG);
+  fTR->Copy(*((AliTRDv1 &) trd).fTR);
+
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::CreateGeometry()
+{
+  //
+  // Create the GEANT geometry for the Transition Radiation Detector - Version 1
+  // This version covers the full azimuth. 
+  //
+
+  // Check that FRAME is there otherwise we have no place where to put the TRD
+  AliModule* frame = gAlice->GetModule("FRAME");
+  if (!frame) return;
+
+  // Define the chambers
+  AliTRD::CreateGeometry();
+
 }
 
 //_____________________________________________________________________________
@@ -469,98 +174,862 @@ void AliTRDv1::CreateMaterials()
   //
   // Create materials for the Transition Radiation Detector version 1
   //
+
   AliTRD::CreateMaterials();
+
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::CreateTRhit(Int_t det)
+{
+  //
+  // Creates an electron cluster from a TR photon.
+  // The photon is assumed to be created a the end of the radiator. The 
+  // distance after which it deposits its energy takes into account the 
+  // absorbtion of the entrance window and of the gas mixture in drift
+  // volume.
+  //
+
+  // PDG code electron
+  const Int_t   kPdgElectron = 11;
+
+  // Ionization energy
+  const Float_t kWion        = 22.04;
+
+  // Maximum number of TR photons per track
+  const Int_t   kNTR         = 50;
+
+  TLorentzVector mom, pos;
+
+  // 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;
+
+    // Create TR photons
+    gMC->TrackMomentum(mom);
+    Float_t pTot = mom.Rho();
+    fTR->CreatePhotons(iPdg,pTot,nTR,eTR);
+    if (nTR > kNTR) {
+      printf("AliTRDv1::CreateTRhit -- ");
+      printf("Boundary error: nTR = %d, kNTR = %d\n",nTR,kNTR);
+      exit(1);
+    }
+
+    // Loop through the TR photons
+    for (Int_t iTR = 0; iTR < nTR; iTR++) {
+
+      Float_t energyMeV = eTR[iTR] * 0.001;
+      Float_t energyeV  = eTR[iTR] * 1000.0;
+      Float_t absLength = 0;
+      Float_t sigma     = 0;
+
+      // Take the absorbtion in the entrance window into account
+      Double_t muMy = fTR->GetMuMy(energyMeV);
+      sigma = muMy * fFoilDensity;
+      if (sigma > 0.0) {
+        absLength = gRandom->Exp(1.0/sigma);
+        if (absLength < AliTRDgeometry::MyThick()) continue;
+      }
+      else {
+        continue;
+      }
+
+      // The absorbtion cross sections in the drift gas
+      if (fGasMix == 1) {
+        // Gas-mixture (Xe/CO2)
+        Double_t muXe = fTR->GetMuXe(energyMeV);
+        Double_t muCO = fTR->GetMuCO(energyMeV);
+        sigma = (0.85 * muXe + 0.15 * muCO) * fGasDensity * fTR->GetTemp();
+      }
+      else {
+        // Gas-mixture (Xe/Isobutane) 
+        Double_t muXe = fTR->GetMuXe(energyMeV);
+        Double_t muBu = fTR->GetMuBu(energyMeV);
+        sigma = (0.97 * muXe + 0.03 * muBu) * fGasDensity * fTR->GetTemp();
+      }
+
+      // The distance after which the energy of the TR photon
+      // is deposited.
+      if (sigma > 0.0) {
+        absLength = gRandom->Exp(1.0/sigma);
+        if (absLength > (AliTRDgeometry::DrThick()
+                       + AliTRDgeometry::AmThick())) {
+          continue;
+       }
+      }
+      else {
+        continue;
+      }
+
+      // The position of the absorbtion
+      Float_t posHit[3];
+      gMC->TrackPosition(pos);
+      posHit[0] = pos[0] + mom[0] / pTot * absLength;
+      posHit[1] = pos[1] + mom[1] / pTot * absLength;
+      posHit[2] = pos[2] + mom[2] / pTot * absLength;      
+
+      // Create the charge 
+      Int_t q = ((Int_t) (energyeV / kWion));
+
+      // Add the hit to the array. TR photon hits are marked 
+      // by negative charge
+      AddHit(gAlice->GetMCApp()->GetCurrentTrackNumber(),det,posHit,-q,kTRUE); 
+
+    }
+
+  }
+
 }
 
 //_____________________________________________________________________________
 void AliTRDv1::Init() 
 {
   //
-  // Initialise the Transition Radiation Detector after the geometry is built
+  // Initialise Transition Radiation Detector after geometry has been built.
   //
+
   AliTRD::Init();
-  AliMC* pMC = AliMC::GetMC();
 
-  // Retrieve the numeric identifier of the sensitive volumes (gas volume)
-  fIdSens1 = pMC->VolId("UT4I");
-  fIdSens2 = pMC->VolId("UT4N");
-  fIdSens3 = pMC->VolId("UT4O");
+  if(fDebug) printf("%s: Slow simulator\n",ClassName());
+  if (fSensSelect) {
+    if (fSensPlane   >= 0)
+      printf("          Only plane %d is sensitive\n",fSensPlane);
+    if (fSensChamber >= 0)   
+      printf("          Only chamber %d is sensitive\n",fSensChamber);
+    if (fSensSector  >= 0) {
+      Int_t sens1  = fSensSector;
+      Int_t sens2  = fSensSector + fSensSectorRange;
+            sens2 -= ((Int_t) (sens2 / AliTRDgeometry::Nsect())) 
+                   * AliTRDgeometry::Nsect();
+      printf("          Only sectors %d - %d are sensitive\n",sens1,sens2-1);
+    }
+  }
+  if (fTR) 
+    printf("%s: TR simulation on\n",ClassName());
+  else
+    printf("%s: TR simulation off\n",ClassName());
+  printf("\n");
+
+  // First ionization potential (eV) for the gas mixture (90% Xe + 10% CO2)
+  const Float_t kPoti = 12.1;
+  // Maximum energy (50 keV);
+  const Float_t kEend = 50000.0;
+  // Ermilova distribution for the delta-ray spectrum
+  Float_t poti = TMath::Log(kPoti);
+  Float_t eEnd = TMath::Log(kEend);
+
+  // Ermilova distribution for the delta-ray spectrum
+  fDeltaE = new TF1("deltae" ,Ermilova    ,poti,eEnd,0);
+
+  // Geant3 distribution for the delta-ray spectrum
+  fDeltaG = new TF1("deltaeg",IntSpecGeant,poti,eEnd,0);
+
+  if(fDebug) {
+    printf("%s: ",ClassName());
+    for (Int_t i = 0; i < 80; i++) printf("*");
+    printf("\n");
+  }
+
 }
 
 //_____________________________________________________________________________
-void AliTRDv1::StepManager() 
+AliTRDsim *AliTRDv1::CreateTR()
 {
   //
-  // Procedure called at every step in the TRD
+  // Enables the simulation of TR
   //
 
-  Int_t         vol[3]; 
-  Int_t         icopy1, icopy2;
-  Int_t         idSens, icSens; 
-  
-  Float_t       hits[4];
-  
-  TClonesArray &lhits = *fHits;
+  fTR = new AliTRDsim();
+  return fTR;
 
-  AliMC* pMC = AliMC::GetMC();
-  
-  // Use only charged tracks and count them only once per volume
-  if (pMC->TrackCharge() && pMC->TrackExiting()) {
-    
-    // Check on sensitive volume
-    idSens = pMC->CurrentVol(0,icSens);
-
-    // Check on sensitive volume
-    idSens = pMC->CurrentVol(0,icSens);
-    if ((idSens == fIdSens1) || 
-        (idSens == fIdSens2) ||
-        (idSens == fIdSens3)) { 
-      
-      // The sector number
-      pMC->CurrentVolOff(5,0,icopy1);
-      pMC->CurrentVolOff(6,0,icopy2);
-      if (icopy2 == 1)
-        vol[0] =     icopy1;
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::SetSensPlane(Int_t iplane)
+{
+  //
+  // Defines the hit-sensitive plane (0-5)
+  //
+
+  if ((iplane < 0) || (iplane > 5)) {
+    printf("Wrong input value: %d\n",iplane);
+    printf("Use standard setting\n");
+    fSensPlane  = -1;
+    fSensSelect =  0;
+    return;
+  }
+
+  fSensSelect = 1;
+  fSensPlane  = iplane;
+
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::SetSensChamber(Int_t ichamber)
+{
+  //
+  // Defines the hit-sensitive chamber (0-4)
+  //
+
+  if ((ichamber < 0) || (ichamber > 4)) {
+    printf("Wrong input value: %d\n",ichamber);
+    printf("Use standard setting\n");
+    fSensChamber = -1;
+    fSensSelect  =  0;
+    return;
+  }
+
+  fSensSelect  = 1;
+  fSensChamber = ichamber;
+
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::SetSensSector(Int_t isector)
+{
+  //
+  // Defines the hit-sensitive sector (0-17)
+  //
+
+  SetSensSector(isector,1);
+
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::SetSensSector(Int_t isector, Int_t nsector)
+{
+  //
+  // Defines a range of hit-sensitive sectors. The range is defined by
+  // <isector> (0-17) as the starting point and <nsector> as the number 
+  // of sectors to be included.
+  //
+
+  if ((isector < 0) || (isector > 17)) {
+    printf("Wrong input value <isector>: %d\n",isector);
+    printf("Use standard setting\n");
+    fSensSector      = -1;
+    fSensSectorRange =  0;
+    fSensSelect      =  0;
+    return;
+  }
+
+  if ((nsector < 1) || (nsector > 18)) {
+    printf("Wrong input value <nsector>: %d\n",nsector);
+    printf("Use standard setting\n");
+    fSensSector      = -1;
+    fSensSectorRange =  0;
+    fSensSelect      =  0;
+    return;
+  }
+
+  fSensSelect      = 1;
+  fSensSector      = isector;
+  fSensSectorRange = nsector;
+
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::StepManager()
+{
+  //
+  // Slow simulator. Every charged track produces electron cluster as hits 
+  // along its path across the drift volume. 
+  //
+
+  switch (fTypeOfStepManager) {
+    case 0  : StepManagerErmilova();  break;  // 0 is Ermilova
+    case 1  : StepManagerGeant();     break;  // 1 is Geant
+    case 2  : StepManagerFixedStep(); break;  // 2 is fixed step
+    default : printf("<AliTRDv1::StepManager>: Not a valid Step Manager.\n");
+  }
+
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::SelectStepManager(Int_t t)
+{
+  //
+  // Selects a step manager type:
+  //   0 - Ermilova
+  //   1 - Geant3
+  //   2 - Fixed step size
+  //
+
+  if (t == 1) {
+    printf("<AliTRDv1::SelectStepManager>: Sorry, Geant parametrization step"
+          "manager is not implemented yet. Please ask K.Oyama for detail.\n");
+  }
+
+  fTypeOfStepManager = t;
+  printf("<AliTRDv1::SelectStepManager>: Step Manager type %d was selected.\n"
+        , fTypeOfStepManager);
+
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::StepManagerGeant()
+{
+  //
+  // Slow simulator. Every charged track produces electron cluster as hits 
+  // along its path across the drift volume. The step size is set acording
+  // to Bethe-Bloch. The energy distribution of the delta electrons follows
+  // a spectrum taken from Geant3.
+  //
+
+  printf("AliTRDv1::StepManagerGeant: Not implemented yet.\n");
+
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::StepManagerErmilova()
+{
+  //
+  // Slow simulator. Every charged track produces electron cluster as hits 
+  // along its path across the drift volume. The step size is set acording
+  // to Bethe-Bloch. The energy distribution of the delta electrons follows
+  // a spectrum taken from Ermilova et al.
+  //
+
+  Int_t    pla = 0;
+  Int_t    cha = 0;
+  Int_t    sec = 0;
+  Int_t    det = 0;
+  Int_t    iPdg;
+  Int_t    qTot;
+
+  Float_t  hits[3];
+  Double_t  random[1];
+  Float_t  charge;
+  Float_t  aMass;
+
+  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;
+
+  const Int_t    kNplan       = AliTRDgeometry::Nplan();
+  const Int_t    kNcham       = AliTRDgeometry::Ncham();
+  const Int_t    kNdetsec     = kNplan * kNcham;
+
+  const Double_t kBig         = 1.0E+12; // Infinitely big
+  const Float_t  kWion        = 22.04;   // Ionization energy
+  const Float_t  kPTotMaxEl   = 0.002;   // Maximum momentum for e+ e- g 
+
+  // 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  kPrim        = 48.0;  // dN1/dx|min for the gas mixture (90% Xe + 10% CO2)
+  // First ionization potential (eV) for the gas mixture (90% Xe + 10% CO2)
+  const Float_t  kPoti        = 12.1;
+
+  const Int_t    kPdgElectron = 11;  // PDG code electron
+
+  // Set the maximum step size to a very large number for all 
+  // neutral particles and those outside the driftvolume
+  gMC->SetMaxStep(kBig); 
+
+  // Use only charged tracks 
+  if (( gMC->TrackCharge()       ) &&
+      (!gMC->IsTrackStop()       ) && 
+      (!gMC->IsTrackDisappeared())) {
+
+    // Inside a sensitive volume?
+    drRegion = kFALSE;
+    amRegion = kFALSE;
+    cIdCurrent = gMC->CurrentVolName();
+    if (cIdSensDr == cIdCurrent[1]) {
+      drRegion = kTRUE;
+    }
+    if (cIdSensAm == cIdCurrent[1]) {
+      amRegion = kTRUE;
+    }
+    if (drRegion || amRegion) {
+
+      // 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
-        vol[0] = 6 - icopy1 + 5;
-      
-      // The chamber number 
-      //   1: outer left
-      //   2: neighbouring left
-      //   3: inner
-      //   4: neighbouring right
-      //   5: outer right
-      pMC->CurrentVolOff(3,0,icopy1);
-      if      (idSens == fIdSens3)
-        vol[1] = 4 * icopy1 - 3; 
-      else if (idSens == fIdSens2)
-        vol[1] = 2 * icopy1;
-      else 
-        vol[1] = 3;
-      
-      // The plane number
-      pMC->CurrentVolOff(1,0,icopy1);
-      vol[2] = icopy1;
+        phi = phi -  90.;
+      sec = ((Int_t) (phi / 20));
+
+      // The plane and chamber number
+      cIdChamber[0] = cIdCurrent[2];
+      cIdChamber[1] = cIdCurrent[3];
+      Int_t idChamber = (atoi(cIdChamber) % kNdetsec);
+      cha = ((Int_t) idChamber / kNplan);
+      pla = ((Int_t) idChamber % kNplan);
 
+      // Check on selected volumes
+      Int_t addthishit = 1;
       if (fSensSelect) {
-        Int_t addthishit = 1;
-        if ((fSensPlane)   && (vol[2] != fSensPlane  )) addthishit = 0;
-        if ((fSensChamber) && (vol[1] != fSensChamber)) addthishit = 0;
-        if ((fSensSector)  && (vol[0] != fSensSector )) addthishit = 0;
-        if (addthishit) {
-          pMC->TrackPosition(hits);
-          hits[3] = 0;
-          new(lhits[fNhits++]) AliTRDhit(fIshunt,gAlice->CurrentTrack(),vol,hits);
+        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;
+         }
+          else {
+            if ((sec < sens1) && (sec >= sens2)) addthishit = 0;
+         }
        }
       }
-      else {      
-        pMC->TrackPosition(hits);
-        hits[3] = 0;
-        new(lhits[fNhits++]) AliTRDhit(fIshunt,gAlice->CurrentTrack(),vol,hits);
+
+      // Add this hit
+      if (addthishit) {
+
+       // The detector number
+        det = fGeometry->GetDetector(pla,cha,sec);
+
+       // Special hits only in the drift region
+        if (drRegion) {
+
+          // Create a track reference at the entrance and
+          // exit of each chamber that contain the 
+         // momentum components of the particle
+          if (gMC->IsTrackEntering() || gMC->IsTrackExiting()) {
+            gMC->TrackMomentum(mom);
+            AddTrackReference(gAlice->GetMCApp()->GetCurrentTrackNumber());
+          }
+
+          // Create the hits from TR photons
+          if (fTR) CreateTRhit(det);
+
+       }
+
+        // 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);
+
+       // Create a new dEdx hit
+        if (drRegion) {
+          AddHit(gAlice->GetMCApp()->GetCurrentTrackNumber()
+                ,det,hits,qTot,kTRUE);       
+       }
+        else {
+          AddHit(gAlice->GetMCApp()->GetCurrentTrackNumber()
+                ,det,hits,qTot,kFALSE);      
+       }
+
+        // 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 {
+            pp = kPrim * kPlateau;
+          }
+      
+          if (pp > 0) {
+            do 
+            gMC->GetRandom()->RndmArray(1, random);
+            while ((random[0] == 1.) || (random[0] == 0.));
+            stepSize = - TMath::Log(random[0]) / pp; 
+            gMC->SetMaxStep(stepSize);
+         }
+
+       }
+
       }
 
     }
 
+  }
+
+}
+
+//_____________________________________________________________________________
+void AliTRDv1::StepManagerFixedStep()
+{
+  //
+  // Slow simulator. Every charged track produces electron cluster as hits 
+  // along its path across the drift volume. The step size is fixed in
+  // this version of the step manager.
+  //
+
+  Int_t    pla = 0;
+  Int_t    cha = 0;
+  Int_t    sec = 0;
+  Int_t    det = 0;
+  Int_t    qTot;
+
+  Float_t  hits[3];
+  Double_t eDep;
+
+  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;
+
+  const Int_t    kNplan       = AliTRDgeometry::Nplan();
+  const Int_t    kNcham       = AliTRDgeometry::Ncham();
+  const Int_t    kNdetsec     = kNplan * kNcham;
+
+  const Double_t kBig         = 1.0E+12;
+
+  const Float_t  kWion        = 22.04;   // Ionization energy
+  const Float_t  kEkinMinStep = 1.0e-5;  // Minimum energy for the step size adjustment
+
+  // Set the maximum step size to a very large number for all 
+  // neutral particles and those outside the driftvolume
+  gMC->SetMaxStep(kBig); 
+
+  // If not charged track or already stopped or disappeared, just return.
+  if ((!gMC->TrackCharge()) || 
+        gMC->IsTrackStop()  || 
+        gMC->IsTrackDisappeared()) return;
+
+  // Inside a sensitive volume?
+  cIdCurrent = gMC->CurrentVolName();
+
+  if (cIdSensDr == cIdCurrent[1]) drRegion = kTRUE;
+  if (cIdSensAm == cIdCurrent[1]) amRegion = kTRUE;
+
+  if ((!drRegion) && (!amRegion)) return;
+
+  // 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 += 270.;
+  else           phi -=  90.;
+  sec = ((Int_t) (phi / 20.));
+
+  // The plane and chamber number
+  cIdChamber[0] = cIdCurrent[2];
+  cIdChamber[1] = cIdCurrent[3];
+  Int_t idChamber = (atoi(cIdChamber) % kNdetsec);
+  cha = ((Int_t) idChamber / kNplan);
+  pla = ((Int_t) idChamber % kNplan);
+  
+  // 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;
+      }
+      else {
+        if ((sec < sens1) && (sec >= sens2)) addthishit = 0;
+      }
+    }
+  }
+
+  if (!addthishit) return;
+
+  det = fGeometry->GetDetector(pla,cha,sec);  // The detector number
+  
+  Int_t trkStat = 0;  // 0: InFlight 1:Entering 2:Exiting
+
+  // Special hits only in the drift region
+  if (drRegion) {
+
+    // Create a track reference at the entrance and exit of each
+    // chamber that contain the momentum components of the particle
+
+    if (gMC->IsTrackEntering()) {
+      gMC->TrackMomentum(mom);
+      AddTrackReference(gAlice->GetMCApp()->GetCurrentTrackNumber());
+      trkStat = 1;
+    }
+    if (gMC->IsTrackExiting()) {
+      gMC->TrackMomentum(mom);
+      AddTrackReference(gAlice->GetMCApp()->GetCurrentTrackNumber());
+      trkStat = 2;
+    }
+
+    // Create the hits from TR photons
+    if (fTR) CreateTRhit(det);    
+
+  }
+  
+  // Calculate the charge according to GEANT Edep
+  // Create a new dEdx hit
+  eDep = TMath::Max(gMC->Edep(),0.0) * 1.0e+09;
+  qTot = (Int_t) (eDep / kWion);
+  AddHit(gAlice->GetMCApp()->GetCurrentTrackNumber(),det,hits,qTot,drRegion);
+
+  // Set Maximum Step Size
+  // Produce only one hit if Ekin is below cutoff
+  if ((gMC->Etot() - gMC->TrackMass()) < kEkinMinStep) return;
+  gMC->SetMaxStep(fStepSize);
+
+}
+
+//_____________________________________________________________________________
+Double_t AliTRDv1::BetheBloch(Double_t bg) 
+{
+  //
+  // Parametrization of the Bethe-Bloch-curve
+  // The parametrization is the same as for the TPC and is taken from Lehrhaus.
+  //
+
+  // This parameters have been adjusted to averaged values from GEANT
+  const Double_t kP1 = 7.17960e-02;
+  const Double_t kP2 = 8.54196;
+  const Double_t kP3 = 1.38065e-06;
+  const Double_t kP4 = 5.30972;
+  const Double_t kP5 = 2.83798;
+
+  // This parameters have been adjusted to Xe-data found in:
+  // Allison & Cobb, Ann. Rev. Nucl. Sci. (1980), 30, 253
+  //const Double_t kP1 = 0.76176E-1;
+  //const Double_t kP2 = 10.632;
+  //const Double_t kP3 = 3.17983E-6;
+  //const Double_t kP4 = 1.8631;
+  //const Double_t kP5 = 1.9479;
+
+  // 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 kBBMax;
+  }
+
+}
+
+//_____________________________________________________________________________
+Double_t BetheBlochGeant(Double_t bg)
+{
+  //
+  // Return dN/dx (number of primary collisions per centimeter)
+  // for given beta*gamma factor.
+  //
+  // Implemented by K.Oyama according to GEANT 3 parametrization shown in
+  // A.Andronic's webpage: http://www-alice.gsi.de/trd/papers/dedx/dedx.html
+  // This must be used as a set with IntSpecGeant.
+  //
+
+  Double_t arr_g[20] = {
+    1.100000,   1.200000,    1.300000,    1.500000,
+    1.800000,   2.000000,    2.500000,    3.000000,
+    4.000000,   7.000000,    10.000000,   20.000000,
+    40.000000,  70.000000,   100.000000,  300.000000,
+    600.000000, 1000.000000, 3000.000000, 10000.000000 };
+
+  Double_t arr_nc[20] = {
+    75.009056,   45.508083,   35.299252,   27.116327,
+    22.734999,   21.411915,   19.934095,   19.449375,
+    19.344431,   20.185553,   21.027925,   22.912676,
+    24.933352,   26.504053,   27.387468,   29.566597,
+    30.353779,   30.787134,   31.129285,   31.157350 };
+
+  // betagamma to gamma
+  Double_t g = TMath::Sqrt( 1. + bg*bg );
+
+  // Find the index just before the point we need.
+  int i;
+  for( i = 0 ; i < 18 ; i++ )
+    if( arr_g[i] < g && arr_g[i+1] > g )
+      break;
+
+  // Simple interpolation.
+  Double_t pp = ((arr_nc[i+1] - arr_nc[i]) / 
+                (arr_g[i+1]-arr_g[i])) * (g-arr_g[i]) + arr_nc[i];
+
+  return pp;
+
+}
+
+//_____________________________________________________________________________
+Double_t Ermilova(Double_t *x, Double_t *)
+{
+  //
+  // Calculates the delta-ray energy distribution according to Ermilova.
+  // Logarithmic scale !
+  //
+
+  Double_t energy;
+  Double_t dpos;
+  Double_t dnde;
+
+  Int_t    pos1, pos2;
+
+  const Int_t kNv = 31;
+
+  Float_t vxe[kNv] = { 2.3026, 2.9957, 3.4012, 3.6889, 3.9120  
+                     , 4.0943, 4.2485, 4.3820, 4.4998, 4.6052
+                     , 4.7005, 5.0752, 5.2983, 5.7038, 5.9915
+                     , 6.2146, 6.5221, 6.9078, 7.3132, 7.6009
+                     , 8.0064, 8.5172, 8.6995, 8.9872, 9.2103
+                     , 9.4727, 9.9035,10.3735,10.5966,10.8198
+                     ,11.5129 };
+
+  Float_t vye[kNv] = { 80.0  , 31.0  , 23.3  , 21.1  , 21.0
+                     , 20.9  , 20.8  , 20.0  , 16.0  , 11.0
+                     ,  8.0  ,  6.0  ,  5.2  ,  4.6  ,  4.0
+                     ,  3.5  ,  3.0  ,  1.4  ,  0.67 ,  0.44
+                     ,  0.3  ,  0.18 ,  0.12 ,  0.08 ,  0.056
+                     ,  0.04 ,  0.023,  0.015,  0.011,  0.01
+                    ,  0.004 };
+
+  energy = x[0];
+
+  // Find the position 
+  pos1 = pos2 = 0;
+  dpos = 0;
+  do {
+    dpos = energy - vxe[pos2++];
   } 
+  while (dpos > 0);
+  pos2--; 
+  if (pos2 > kNv) pos2 = kNv - 1;
+  pos1 = pos2 - 1;
+
+  // Differentiate between the sampling points
+  dnde = (vye[pos1] - vye[pos2]) / (vxe[pos2] - vxe[pos1]);
+
+  return dnde;
+
+}
+
+//_____________________________________________________________________________
+Double_t IntSpecGeant(Double_t *x, Double_t *)
+{
+  //
+  // Integrated spectrum from Geant3
+  //
+
+  const Int_t n_pts = 83;
+  Double_t arr_e[n_pts] = {
+    2.421257,  2.483278,  2.534301,  2.592230,
+    2.672067,  2.813299,  3.015059,  3.216819,
+    3.418579,  3.620338,  3.868209,  3.920198,
+    3.978284,  4.063923,  4.186264,  4.308605,
+    4.430946,  4.553288,  4.724261,  4.837736,
+    4.999842,  5.161949,  5.324056,  5.486163,
+    5.679688,  5.752998,  5.857728,  5.962457,
+    6.067185,  6.171914,  6.315653,  6.393674,
+    6.471694,  6.539689,  6.597658,  6.655627,
+    6.710957,  6.763648,  6.816338,  6.876198,
+    6.943227,  7.010257,  7.106285,  7.252151,
+    7.460531,  7.668911,  7.877290,  8.085670,
+    8.302979,  8.353585,  8.413120,  8.483500,
+    8.541030,  8.592857,  8.668865,  8.820485,
+    9.037086,  9.253686,  9.470286,  9.686887,
+    9.930838,  9.994655, 10.085822, 10.176990,
+    10.268158, 10.359325, 10.503614, 10.627565,
+    10.804637, 10.981709, 11.158781, 11.335854,
+    11.593397, 11.781165, 12.049404, 12.317644,
+    12.585884, 12.854123, 14.278421, 16.975889,
+    20.829416, 24.682943, 28.536469
+  };
+  Double_t arr_dndx[n_pts] = {
+    19.344431, 18.664679, 18.136106, 17.567745,
+    16.836426, 15.677382, 14.281277, 13.140237,
+    12.207677, 11.445510, 10.697049, 10.562296,
+    10.414673, 10.182341,  9.775256,  9.172330,
+    8.240271,  6.898587,  4.808303,  3.889751,
+    3.345288,  3.093431,  2.897347,  2.692470,
+    2.436222,  2.340029,  2.208579,  2.086489,
+    1.975535,  1.876519,  1.759626,  1.705024,
+    1.656374,  1.502638,  1.330566,  1.200697,
+    1.101168,  1.019323,  0.943867,  0.851951,
+    0.755229,  0.671576,  0.570675,  0.449672,
+    0.326722,  0.244225,  0.188225,  0.149608,
+    0.121529,  0.116289,  0.110636,  0.103490,
+    0.096147,  0.089191,  0.079780,  0.063927,
+    0.047642,  0.036341,  0.028250,  0.022285,
+    0.017291,  0.016211,  0.014802,  0.013533,
+    0.012388,  0.011352,  0.009803,  0.008537,
+    0.007039,  0.005829,  0.004843,  0.004034,
+    0.003101,  0.002564,  0.001956,  0.001494,
+    0.001142,  0.000873,  0.000210,  0.000014,
+    0.000000,  0.000000,  0.000000
+  };
+
+  Int_t i;
+  Double_t energy = x[0];
+  Double_t dnde;
+
+  for( i = 0 ; i < n_pts ; i++ )
+    if( energy < arr_e[i] ) break;
+
+  if( i == 0 )
+    printf("Error in AliTRDv1::IntSpecGeant: "
+          "given energy value is too small or zero.\n");
+
+  // Interpolate
+  dnde = (arr_dndx[i-1] - arr_dndx[i]) / (arr_e[i] - arr_e[i-1]);
+
+  return dnde;
 
 }