AliPhysics  fceccc5 (fceccc5)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AliNamedString.cxx
Go to the documentation of this file.
1 // $Id$
2 //
3 // Named string object.
4 //
5 // Author: S.Aiola
6 
7 #include "AliNamedString.h"
8 
10 
11 //________________________________________________________________________
13  TObjString(),
14  fName()
15 {
16  // Dummy constructor.
17 
18 }
19 
20 //________________________________________________________________________
21 AliNamedString::AliNamedString(const char *name, const char *string) :
22  TObjString(string),
23  fName(name)
24 {
25  // Standard constructor.
26 
27 }
ClassImp(AliNamedString) AliNamedString