]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDsegmentArray.h
Only one initializer for a default argument
[u/mrichter/AliRoot.git] / TRD / AliTRDsegmentArray.h
CommitLineData
f7336fa3 1#ifndef TRDsegmentArray_H
2#define TRDsegmentArray_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8////////////////////////////////////////////////////////
9// Array for TRD detector segments containing digits //
10////////////////////////////////////////////////////////
11
12#include "AliTRDsegmentArrayBase.h"
13#include "AliTRDdataArray.h"
14
15//_____________________________________________________________________________
16class AliTRDsegmentArray : public AliTRDsegmentArrayBase {
17
18 public:
19
20 AliTRDsegmentArray();
6f1e466d 21 AliTRDsegmentArray(Text_t *classname, Int_t n);
f7336fa3 22 ~AliTRDsegmentArray() { };
23
24 virtual void Delete();
9d0b222b 25 virtual void Delete(const char *) { Delete(); };
f7336fa3 26
27 virtual Bool_t LoadArray(const Char_t *branchname);
28 virtual Bool_t StoreArray(const Char_t *branchname);
29
30 virtual AliTRDdataArray *GetDataArray(Int_t det);
31 virtual AliTRDdataArray *GetDataArray(Int_t sec, Int_t cha, Int_t pla);
32
33 protected:
34
35 ClassDef(AliTRDsegmentArray,1) // TRD detector segment array
36
37};
38
39#endif