]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RALICE/AliAttribObj.h
In MUONmappingLinkDef.h:
[u/mrichter/AliRoot.git] / RALICE / AliAttribObj.h
1 #ifndef ALIATTRIBOBJ_H
2 #define ALIATTRIBOBJ_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 #include "TObject.h"
9
10 #include "AliAttrib.h"
11
12 class AliAttribObj : public TObject,public AliAttrib
13 {
14  public:
15   AliAttribObj();                                    // Default constructor
16   AliAttribObj(AliAttrib& a);                        // Constructor
17   virtual ~AliAttribObj();                           // Destructor
18   AliAttribObj(const AliAttribObj& a);               // Copy constructor
19   virtual TObject* Clone(const char* name="") const; // Make a deep copy and provide its pointer
20
21  ClassDef(AliAttribObj,4) // Generic handling of detector signal (calibration) attributes.
22 };
23 #endif