00001 /*************************************************************************** 00002 * 00003 * $Id: StPsd.cxx,v 2.1 2001/03/14 02:27:49 ullrich Exp $ 00004 * 00005 * Author: Thomas Ullrich, Mar 2001 00006 *************************************************************************** 00007 * 00008 * Description: Base class for all Physics Summary Data (PSD) classes. 00009 * 00010 *************************************************************************** 00011 * 00012 * $Log: StPsd.cxx,v $ 00013 * Revision 2.1 2001/03/14 02:27:49 ullrich 00014 * Initial Revision. 00015 * 00016 **************************************************************************/ 00017 #include "StPsd.h" 00018 00019 ClassImp(StPsd) 00020 00021 static const char rcsid[] = "$Id"; 00022 00023 StPsd::StPsd() : mPwg(generic), mId(0) { /* noop */ } 00024 00025 StPsd::StPsd(StPwg pwg, int id) : mPwg(pwg), mId(id) { /* noop */ } 00026 00027 StPsd::~StPsd() { /* noop */ } 00028 00029 StPwg 00030 StPsd::pwg() const {return mPwg;} 00031 00032 int 00033 StPsd::id() const {return mId;} 00034 00035 void 00036 StPsd::setPwg(StPwg pwg) {mPwg = pwg;} 00037 00038 void 00039 StPsd::setId(int id) {mId = id;}
1.5.9