AliPhysics  2b88e80 (2b88e80)
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 
9 ClassImp(AliNamedString)
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 }