From: coppedis Date: Wed, 13 Jun 2001 11:17:49 +0000 (+0000) Subject: Bug corrected X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=8064008ba74af9a775ae7d307faae78349b9d3ea Bug corrected --- diff --git a/ZDC/AliZDCv2.cxx b/ZDC/AliZDCv2.cxx index b2eeddd664a..bed69a86a79 100644 --- a/ZDC/AliZDCv2.cxx +++ b/ZDC/AliZDCv2.cxx @@ -15,6 +15,9 @@ /* $Log$ +Revision 1.3 2001/06/13 11:11:02 coppedis +Minor changes + Revision 1.2 2001/06/12 13:45:11 coppedis TDI in correct position and minor correction @@ -1309,7 +1312,7 @@ void AliZDCv2::Hits2Digits(Int_t ntracks) } //_____________________________________________________________________________ - void AliZDCv2::MakeBranch(Option_t *opt, char *file) + void AliZDCv2::MakeBranch(Option_t *opt, const char *file) { // // Create a new branch in the current Root Tree @@ -1329,8 +1332,8 @@ void AliZDCv2::Hits2Digits(Int_t ntracks) else fDigits = new TClonesArray ("AliZDCDigit",1000); char branchname[10]; sprintf(branchname,"%s",GetName()); - gAlice->MakeBranchInTree(gAlice->TreeD(), - branchname, &fDigits, fBufferSize, file) ; + MakeBranchInTree(gAlice->TreeD(), + branchname, &fDigits, fBufferSize, file) ; printf("* AliZDCv2::MakeBranch * Making Branch %s for digits\n\n",branchname); }