StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StPsd.cxx
1 /***************************************************************************
2  *
3  * $Id: StPsd.cxx,v 2.1 2001/03/14 02:27:49 ullrich Exp $
4  *
5  * Author: Thomas Ullrich, Mar 2001
6  ***************************************************************************
7  *
8  * Description: Base class for all Physics Summary Data (PSD) classes.
9  *
10  ***************************************************************************
11  *
12  * $Log: StPsd.cxx,v $
13  * Revision 2.1 2001/03/14 02:27:49 ullrich
14  * Initial Revision.
15  *
16  **************************************************************************/
17 #include "StPsd.h"
18 
19 ClassImp(StPsd)
20 
21 static const char rcsid[] = "$Id";
22 
23 StPsd::StPsd() : mPwg(generic), mId(0) { /* noop */ }
24 
25 StPsd::StPsd(StPwg pwg, int id) : mPwg(pwg), mId(id) { /* noop */ }
26 
27 StPsd::~StPsd() { /* noop */ }
28 
29 StPwg
30 StPsd::pwg() const {return mPwg;}
31 
32 int
33 StPsd::id() const {return mId;}
34 
35 void
36 StPsd::setPwg(StPwg pwg) {mPwg = pwg;}
37 
38 void
39 StPsd::setId(int id) {mId = id;}
StPwg
Definition: StPsd.h:39