Skip to content

Commit

Permalink
Retagging v4-17-Rev-10
Browse files Browse the repository at this point in the history
  • Loading branch information
hristov committed Oct 6, 2009
2 parents d685371 + 3f792bc commit 3c81f00
Show file tree
Hide file tree
Showing 86 changed files with 4,320 additions and 3,973 deletions.
10 changes: 8 additions & 2 deletions EVE/EveBase/AliEveEventManager.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,14 @@ void AliEveEventManager::Open()
TString gaPath(Form("%s/galice.root", fPath.Data()));
// If i use open directly, we get fatal.
// Is AccessPathName check ok for xrootd / alien? Yes, not for http.
if (gSystem->AccessPathName(gaPath, kReadPermission) == kFALSE)
{
// Seems not to work for alien anymore.
TFile *gafile = TFile::Open(gaPath);
if (gafile)
{
gafile->Close();
delete gafile;
// if (gSystem->AccessPathName(gaPath, kReadPermission) == kFALSE)
// {
fRunLoader = AliRunLoader::Open(gaPath, GetName());
if (fRunLoader)
{
Expand Down
Loading

0 comments on commit 3c81f00

Please sign in to comment.