]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Changes related to the corrections of AliRecPoint
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 5 Dec 2001 15:04:34 +0000 (15:04 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 5 Dec 2001 15:04:34 +0000 (15:04 +0000)
TRD/AliTRDclusterizerV0.cxx
TRD/AliTRDrecPoint.cxx
TRD/AliTRDrecPoint.h

index 19f6a70490456ad6c28386f137966a5c3bdd1c8a..9e28834f38cb3db0212ba37c6c04807be32e2220 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.9  2001/05/28 17:07:58  hristov
+Last minute changes; ExB correction in AliTRDclusterizerV1; taking into account of material in G10 TEC frames and material between TEC planes (C.Blume,S.Sedykh)
+
 Revision 1.8  2001/05/07 08:06:44  cblume
 Speedup of the code. Create only AliTRDcluster
 
@@ -225,7 +228,7 @@ Bool_t AliTRDclusterizerV0::MakeClusters()
             geo->Rotate(detector,pos,rot);
 
             // Add this recPoint to the temporary array for this chamber
-            AliTRDrecPoint *recPoint = new AliTRDrecPoint();
+            AliTRDrecPoint *recPoint = new AliTRDrecPoint("");
             recPoint->SetLocalRow(rot[2]);
             recPoint->SetLocalCol(rot[1]);
             recPoint->SetLocalTime(rot[0]);
index d46fa75023a6ad7ef423c92b58435f811e35269f..30fafdadb1cbf01ae86b95e5cde06af30f7fba11 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.6  2001/02/14 18:22:26  cblume
+Change in the geometry of the padplane
+
 Revision 1.5  2000/11/14 14:40:27  cblume
 Correction for the Sun compiler (kTRUE and kFALSE)
 
@@ -72,6 +75,26 @@ AliTRDrecPoint::AliTRDrecPoint():AliRecPoint()
 
 }
 
+//_____________________________________________________________________________
+AliTRDrecPoint::AliTRDrecPoint(const char * opt):AliRecPoint(opt)
+{
+  //
+  // Standard constructor
+  //
+
+  fDetector = 0;
+
+  AliTRD *trd;
+  if ((gAlice) &&
+      (trd = ((AliTRD*) gAlice->GetDetector("TRD")))) {
+    fGeom = trd->GetGeometry();
+  }
+  else {
+    fGeom = NULL;
+  }
+
+}
+
 //_____________________________________________________________________________
 AliTRDrecPoint::~AliTRDrecPoint()
 {
index 926e8edaea58cbbc37846be70c8c5cc821351e80..59a9230ce9bbf32d8c4d61bc08a2a2595b10a1db 100644 (file)
@@ -12,6 +12,7 @@ class AliTRDrecPoint : public AliRecPoint {
  public:
 
   AliTRDrecPoint();
+  AliTRDrecPoint(const char * opt);
   virtual ~AliTRDrecPoint();
 
   virtual void    Print(Option_t* opt) {};