X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;ds=sidebyside;f=TRD%2FAliTRDsegmentID.cxx;h=7e97a3b33740546c878ad298225c8f770a933f8d;hb=1bdd39a127e50596e3943aeb5baf9c2bf9bffbf0;hp=d13a98289fecca4c4c2589f0bcfdc29ae13388b9;hpb=f7336fa340f7adeb921e498ff17d93105430eaf8;p=u%2Fmrichter%2FAliRoot.git diff --git a/TRD/AliTRDsegmentID.cxx b/TRD/AliTRDsegmentID.cxx index d13a98289fe..7e97a3b3374 100644 --- a/TRD/AliTRDsegmentID.cxx +++ b/TRD/AliTRDsegmentID.cxx @@ -13,22 +13,43 @@ * 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 + // + }