ROOT logo
#ifndef ALITRDUSHORTINFO_H
#define ALITRDUSHORTINFO_H
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 * See cxx source for full Copyright notice                               */

/* $Id: AliTRDUshortInfo.h 27946 2008-08-13 15:26:24Z cblume $ */

//////////////////////////////////////////////////
//                                              //
//  TRD calibration base class for one ROC      //
//                                              //
//////////////////////////////////////////////////

#include <TObject.h>

//_____________________________________________________________________________
class AliTRDUshortInfo : public TObject 
{

 public:

  AliTRDUshortInfo();
  AliTRDUshortInfo(Int_t n);
  AliTRDUshortInfo(const AliTRDUshortInfo &c);
  virtual      ~AliTRDUshortInfo();
  AliTRDUshortInfo &operator=(const AliTRDUshortInfo &c);
  virtual void  Copy(TObject &c) const;

  Int_t             GetSize() const                 { return fSize; };
 
  void              SetSize(Int_t n);

 protected:

  Int_t     fSize;              // size
  UShort_t *fData;             //[fSize] Data

  ClassDef(AliTRDUshortInfo, 2)    

};

#endif
 AliTRDUshortInfo.h:1
 AliTRDUshortInfo.h:2
 AliTRDUshortInfo.h:3
 AliTRDUshortInfo.h:4
 AliTRDUshortInfo.h:5
 AliTRDUshortInfo.h:6
 AliTRDUshortInfo.h:7
 AliTRDUshortInfo.h:8
 AliTRDUshortInfo.h:9
 AliTRDUshortInfo.h:10
 AliTRDUshortInfo.h:11
 AliTRDUshortInfo.h:12
 AliTRDUshortInfo.h:13
 AliTRDUshortInfo.h:14
 AliTRDUshortInfo.h:15
 AliTRDUshortInfo.h:16
 AliTRDUshortInfo.h:17
 AliTRDUshortInfo.h:18
 AliTRDUshortInfo.h:19
 AliTRDUshortInfo.h:20
 AliTRDUshortInfo.h:21
 AliTRDUshortInfo.h:22
 AliTRDUshortInfo.h:23
 AliTRDUshortInfo.h:24
 AliTRDUshortInfo.h:25
 AliTRDUshortInfo.h:26
 AliTRDUshortInfo.h:27
 AliTRDUshortInfo.h:28
 AliTRDUshortInfo.h:29
 AliTRDUshortInfo.h:30
 AliTRDUshortInfo.h:31
 AliTRDUshortInfo.h:32
 AliTRDUshortInfo.h:33
 AliTRDUshortInfo.h:34
 AliTRDUshortInfo.h:35
 AliTRDUshortInfo.h:36
 AliTRDUshortInfo.h:37
 AliTRDUshortInfo.h:38
 AliTRDUshortInfo.h:39
 AliTRDUshortInfo.h:40
 AliTRDUshortInfo.h:41
 AliTRDUshortInfo.h:42