]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDsegmentID.cxx
Update of the macros
[u/mrichter/AliRoot.git] / TRD / AliTRDsegmentID.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /*
17 $Log$
18 Revision 1.1.4.1  2000/10/04 16:34:58  cblume
19 Replace include files by forward declarations
20
21 Revision 1.2  2000/06/08 18:32:58  cblume
22 Make code compliant to coding conventions
23
24 Revision 1.1  2000/02/28 19:03:35  cblume
25 Add new TRD classes
26
27 */
28
29 ///////////////////////////////////////////////////////////////////////////////
30 //     Base class for a detector segment                                     // 
31 ///////////////////////////////////////////////////////////////////////////////
32
33 #include "AliTRDsegmentID.h"
34
35 ClassImp(AliTRDsegmentID)
36
37 //_____________________________________________________________________________
38 AliTRDsegmentID::AliTRDsegmentID():TObject()
39 {
40   //
41   // AliTRDsegmentID default constructor
42   //
43
44   fSegmentID = 0;
45
46 }
47
48 //_____________________________________________________________________________
49 AliTRDsegmentID::AliTRDsegmentID(Int_t index):TObject()
50 {
51   //
52   // Defines a detector segment
53   //
54
55   fSegmentID = index;
56
57 }
58
59 //_____________________________________________________________________________
60 AliTRDsegmentID::~AliTRDsegmentID()
61 {
62   //
63   // AliTRDsegmentID destructor
64   //
65
66 }