5def GetInputFiles(inputPath,filePattern):
6 print(
"Searching for files with pattern '",filePattern,
"' in ",inputPath)
7 fileList=[]
8 cmd='ls -1'
9
10 for f in popen("%(cmd)s %(path)s | grep '%(pattern)s'" \
11 % {'cmd':cmd,'path':inputPath,'pattern':filePattern}):
12 if f[len(f)-1:]=='\n':
13 f=f[0:len(f)-1]
14 if (inputPath[0:11]=='/eos/atlas/'):
15 fileList+=['root://eosatlas.cern.ch/'+inputPath+'/'+f]
16 elif (inputPath[0:10]=='/eos/user/'):
17 fileList+=['root://eosuser.cern.ch/'+inputPath+'/'+f]
18 elif (inputPath[0:12]=='/eos/project'):
19 fileList+=['root://eosproject.cern.ch/'+inputPath+'/'+f]
20 else:
21 fileList+=[inputPath+'/'+f]
22 print ("Found ",len(fileList), " files")
23 return fileList
24
25
void print(char *figname, TCanvas *c1)