StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StMuPmdUtil.h
1 /*****************************************************************
2  * $Id: StMuPmdUtil.h,v 1.1 2004/04/02 03:36:21 jeromel Exp $
3  *
4  * Class : StMuPmdUtil
5  * Author: Supriya Das
6  * ****************************************************************
7  *
8  * Description: This is the utility class for PMD to convert
9  * StEvent to StMuDst and vice versa
10  * ****************************************************************
11  * $Log: StMuPmdUtil.h,v $
12  * Revision 1.1 2004/04/02 03:36:21 jeromel
13  * New files for PMD
14  *
15  * ****************************************************************/
16 #ifndef StMuPmdUtil_h
17 #define StMuPmdUtil_h
18 #include "TObject.h"
19 
20 class StMuPmdCollection;
21 class StPhmdCollection;
22 
23 class StMuPmdUtil : public TObject
24 {
25  protected:
26 
27  public:
28  StMuPmdUtil();
29  ~StMuPmdUtil();
32 
33  void fillMuPmd(StPhmdCollection*, StMuPmdCollection*);
34  void fillPmd(StMuPmdCollection*, StPhmdCollection*);
35 
36  ClassDef(StMuPmdUtil,1);
37 };
38 #endif
39