]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSBase.cxx
completely re-worked TPC CA tracking code (Sergey/Ivan)
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSBase.cxx
CommitLineData
9cf4e02f 1/**************************************************************************
2 * This file is property of and copyright by the Experimental Nuclear *
3 * Physics Group, Dep. of Physics *
4 * University of Oslo, Norway, 2007 *
5 * *
6 * Author: Per Thomas Hille <perthi@fys.uio.no> for the ALICE HLT Project.*
7 * Contributors are mentioned in the code where appropriate. *
8 * Please report bugs to perthi@fys.uio.no *
9 * *
10 * Permission to use, copy, modify and distribute this software and its *
11 * documentation strictly for non-commercial purposes is hereby granted *
12 * without fee, provided that the above copyright notice appears in all *
13 * copies and that both the copyright notice and this permission notice *
14 * appear in the supporting documentation. The authors make no claims *
15 * about the suitability of this software for any purpose. It is *
16 * provided "as is" without express or implied warranty. *
17 **************************************************************************/
aa21410e 18
9cf4e02f 19#include "AliHLTPHOSBase.h"
aa21410e 20#include "AliHLTPHOSConfig.h"
21#include "AliHLTPHOSAltroConfig.h"
9cf4e02f 22
9c9d15d6 23
aa21410e 24AliHLTPHOSBase::AliHLTPHOSBase(): AliHLTPHOSConfig(),
25 AliHLTPHOSAltroConfig()
9cf4e02f 26{
939c67e7 27
9cf4e02f 28}
29
aa21410e 30
9cf4e02f 31AliHLTPHOSBase::~AliHLTPHOSBase()
32{
33
34}
35
939c67e7 36
37bool
38AliHLTPHOSBase::CheckFile(const char *fileName, const char *opt) const
39{
af6a2273 40 //returns true if the file specified by "fileName exists and has acceees rights specified by "opt",
41 //returns false if it doesnt exist, or it exists, but doesnt have the access right specified by "opt"
42
939c67e7 43 FILE *fp = fopen(fileName, opt);
44
45 if(fp == 0)
46 {
47 cout <<"Error: from" << typeid(*this).name() <<"could not open file: "<< fileName <<endl;
48 return false;
49 }
50 else
51 {
52 fclose(fp);
53 return true;
54 }
55}