try_event_class.cxx~ 210 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include <TSystem.h>
#include <iostream>

using namespace std;

void try_event_class()
{
	gSystem->Load("/home/dariak/NeuRad_tests/macros/event_C.so");
	event ev;
	ev.GetEntry(501);
	ev.Show();
	ev.Loop();


}