00001 /*************************************************************************** 00002 * 00003 * $Id: StTemplates.hh,v 1.2 1999/02/17 11:39:11 ullrich Exp $ 00004 * 00005 * Author: Thomas Ullrich, Jan 1999 00006 *************************************************************************** 00007 * 00008 * Description: 00009 * 00010 *************************************************************************** 00011 * 00012 * $Log: StTemplates.hh,v $ 00013 * Revision 1.2 1999/02/17 11:39:11 ullrich 00014 * Removed specialization for 'long double'. 00015 * 00016 * Revision 1.1 1999/01/30 03:59:05 fisyak 00017 * Root Version of StarClassLibrary 00018 * 00019 * Revision 1.1 1999/01/23 00:28:03 ullrich 00020 * Initial Revision 00021 * 00022 **************************************************************************/ 00023 #ifndef ST_TEMPLATES_HH 00024 #define ST_TEMPLATES_HH 00025 00026 #ifdef ST_SOLVE_TEMPLATES 00027 00028 #include "StThreeVector.hh" 00029 static StThreeVector<float> dummy1; 00030 static StThreeVector<double> dummy2; 00031 #include "StLorentzVector.hh" 00032 static StLorentzVector<float> dummy4; 00033 static StLorentzVector<double> dummy5; 00034 #include "StMatrix.hh" 00035 static StMatrix<float> dummy7; 00036 static StMatrix<double> dummy8; 00037 00038 #endif //ST_SOLVE_TEMPLATES 00039 00040 #endif //ST_TEMPLATES_HH 00041
1.5.9