added the option to split a user function into a global and run-block related part (see MUSR-134)

This commit is contained in:
nemu
2010-11-10 13:13:00 +00:00
parent c4dfc3cbce
commit f4d6e349fe
41 changed files with 2401 additions and 161 deletions

View File

@ -29,6 +29,9 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <vector>
using namespace std;
#include "PUserFcnBase.h"
ClassImp(PUserFcnBase)
@ -52,3 +55,6 @@ PUserFcnBase::PUserFcnBase()
PUserFcnBase::~PUserFcnBase()
{
}
// place a void pointer vector for global user function objects which might be needed
vector<void *> gGlobalUserFcn;