00001 /*************************************************************************** 00002 * 00003 * $Id: StMuDst2StEventMaker.h,v 1.7 2004/10/21 02:59:01 mvl Exp $ 00004 * Author: Frank Laue, BNL, laue@bnl.gov 00005 ***************************************************************************/ 00006 #ifndef StMuDst2StEventMaker_hh 00007 #define StMuDst2StEventMaker_hh 00008 00009 #include "StMaker.h" 00010 #include "StChain.h" 00011 00012 class StMuDstMaker; 00013 class StEvent; 00014 00020 class StMuDst2StEventMaker : public StMaker { 00021 public: 00023 StMuDst2StEventMaker(const char* self="muDst2StEventMaker"); 00024 ~StMuDst2StEventMaker(); 00025 00026 void Clear(const char*); 00027 int Make(); 00028 StEvent* event() { return mStEvent; } 00029 virtual const char *GetCVS() const { 00030 static const char cvs[]="Tag $Name: $ $Id: StMuDst2StEventMaker.h,v 1.7 2004/10/21 02:59:01 mvl Exp $ built "__DATE__" "__TIME__ ; 00031 return cvs; 00032 } 00033 00034 00035 protected: 00036 void printTriggerIds(StEvent*); 00037 void loopOverTracks(StEvent*); 00038 00039 StEvent* mStEvent; 00040 00041 ClassDef(StMuDst2StEventMaker, 0) 00042 }; 00043 00044 00045 #endif 00046 00047 /*************************************************************************** 00048 * 00049 * $Log: StMuDst2StEventMaker.h,v $ 00050 * Revision 1.7 2004/10/21 02:59:01 mvl 00051 * Now get MuDst from GetInputDS, instead of StMuDSTMaker 00052 * 00053 * Revision 1.6 2004/05/02 04:10:13 perev 00054 * private => protected 00055 * 00056 * Revision 1.5 2003/09/17 02:54:37 jeromel 00057 * Name clash. Added warning in case this happens in future 00058 * 00059 * Revision 1.4 2003/09/12 21:32:17 jeromel 00060 * No changes (misspelled) 00061 * 00062 * Revision 1.3 2003/09/07 03:49:03 perev 00063 * gcc 3.2 + WarnOff 00064 * 00065 * Revision 1.2 2003/08/04 14:38:10 laue 00066 * Alex Suaide's updated for the EMC. Now EEMC is included. 00067 * 00068 * Revision 1.1 2003/01/09 18:59:45 laue 00069 * initial check in of new EMC classes and the changes required 00070 * 00071 * Revision 1.15 2002/11/08 14:18:59 laue 00072 * 00073 **************************************************************************/
1.5.9