]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDsegmentID.cxx
Change to TRDdigitizer
[u/mrichter/AliRoot.git] / TRD / AliTRDsegmentID.cxx
CommitLineData
f7336fa3 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$
793ff80c 18Revision 1.1.4.1 2000/10/04 16:34:58 cblume
19Replace include files by forward declarations
20
21Revision 1.2 2000/06/08 18:32:58 cblume
22Make code compliant to coding conventions
23
8230f242 24Revision 1.1 2000/02/28 19:03:35 cblume
25Add new TRD classes
26
f7336fa3 27*/
28
29///////////////////////////////////////////////////////////////////////////////
8230f242 30// Base class for a detector segment //
f7336fa3 31///////////////////////////////////////////////////////////////////////////////
32
33#include "AliTRDsegmentID.h"
34
35ClassImp(AliTRDsegmentID)
36
8230f242 37//_____________________________________________________________________________
38AliTRDsegmentID::AliTRDsegmentID():TObject()
39{
40 //
41 // AliTRDsegmentID default constructor
42 //
43
44 fSegmentID = 0;
45
46}
47
48//_____________________________________________________________________________
49AliTRDsegmentID::AliTRDsegmentID(Int_t index):TObject()
f7336fa3 50{
8230f242 51 //
52 // Defines a detector segment
53 //
54
55 fSegmentID = index;
56
57}
58
59//_____________________________________________________________________________
60AliTRDsegmentID::~AliTRDsegmentID()
61{
62 //
63 // AliTRDsegmentID destructor
64 //
65
f7336fa3 66}