StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StHbtThCorrFctnCollection.hh
1 /***************************************************************************
2  *
3  *
4  *
5  * Author: Laurent Conin, Fabrice Retiere, Subatech, France
6  ***************************************************************************
7  *
8  * Description:
9  * The ThCorrFctnCollection contains pointers to all Theoretical Correlation
10  * Functions that are plugged in a ThCorrFctnManager
11  *
12  ***************************************************************************
13  *
14  *
15  *
16  **************************************************************************/
17 
18 #ifndef StHbtThCorrFctnCollection_hh
19 #define StHbtThCorrFctnCollection_hh
20 
21 
22 #include <list>
23 #if !defined(ST_NO_NAMESPACES)
24 using namespace std;
25 #endif
26 class StHbtThCorrFctn;
27 
28 #ifdef ST_NO_TEMPLATE_DEF_ARGS
29 typedef list<StHbtThCorrFctn*, allocator<StHbtThCorrFctn*> > StHbtThCorrFctnCollection;
30 typedef list<StHbtThCorrFctn*, allocator<StHbtThCorrFctn*> >::iterator StHbtThCorrFctnIterator;
31 #else
32 typedef list<StHbtThCorrFctn*> StHbtThCorrFctnCollection;
33 typedef list<StHbtThCorrFctn*>::iterator StHbtThCorrFctnIterator;
34 #endif
35 
36 #endif