]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Allowing path names with dot (Alberto)
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 3 May 2006 18:29:19 +0000 (18:29 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 3 May 2006 18:29:19 +0000 (18:29 +0000)
STEER/AliCDBPath.cxx

index 6e658296c36e7de867e0634dcadf503d596c516b..ee170c8d21bb62687c2baceb1addd9748f6c18fb 100644 (file)
@@ -174,7 +174,7 @@ AliCDBPath::~AliCDBPath() {
 Bool_t AliCDBPath::IsWord(const TString& str) {
 // check if string is a word
 
-       TRegexp pattern("^[a-zA-Z0-9_]+$");
+       TRegexp pattern("^[a-zA-Z0-9_.]+$");
 
        return str.Contains(pattern);   
 }