]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDsegmentID.cxx
Updated version: Performance and error calculation
[u/mrichter/AliRoot.git] / TRD / AliTRDsegmentID.cxx
index d13a98289fecca4c4c2589f0bcfdc29ae13388b9..7e97a3b33740546c878ad298225c8f770a933f8d 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-*/
+/* $Id$ */
 
 ///////////////////////////////////////////////////////////////////////////////
 //                                                                           //
-//  Alice  AliSementID   object                                             //
-//                                
+//     Base class for a detector segment                                     // 
 //                                                                           //
-//                                                                          //
 ///////////////////////////////////////////////////////////////////////////////
 
 #include "AliTRDsegmentID.h"
 
 ClassImp(AliTRDsegmentID)
 
+//_____________________________________________________________________________
 AliTRDsegmentID::AliTRDsegmentID()
+                :fSegmentID(0)
 {
+  //
+  // AliTRDsegmentID default constructor
+  //
+
+}
+
+//_____________________________________________________________________________
+AliTRDsegmentID::AliTRDsegmentID(Int_t index)
+                :fSegmentID(index)
+{
+  //
+  // Defines a detector segment
+  //
+
+}
+
+//_____________________________________________________________________________
+AliTRDsegmentID::~AliTRDsegmentID()
+{
+  //
+  // AliTRDsegmentID destructor
+  //
+
 }