Sigh -- wrong version of the dump_out_test.cpp macro

Gordon Watts (gwatts@fnal.gov)
Thu, 23 Oct 1997 17:39:21 -0500


Hi,
Sorry -- I posted the incorrect version of the test dump file. The right
one's readout does, indeed, allocate B:

TFile ("output.stuff");
TBranch *b = T.GetBranch("event");
B *event = new B; <<< Left out last time
b->SetAddress(&event);
b->GetEvent(1);
event.Dump(); // What we read!
return 0;

Sorry. That was a bug I fixed early on in the game; this still fails in the
way indicated in the previous email (infact, the behavior for this test
case does not change!).

Cheers,
Gordon.