]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RALICE/AliAttribObj.h
Including cmath
[u/mrichter/AliRoot.git] / RALICE / AliAttribObj.h
CommitLineData
ff19c7ae 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
12class AliAttribObj : public TObject,public AliAttrib
13{
14 public:
64b63904 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
ff19c7ae 20
64b63904 21 ClassDef(AliAttribObj,4) // Generic handling of detector signal (calibration) attributes.
ff19c7ae 22};
23#endif