From a00e23f674541c74fb792963f009e5fdb645ba9a Mon Sep 17 00:00:00 2001 From: hristov Date: Wed, 3 May 2006 18:29:19 +0000 Subject: [PATCH] Allowing path names with dot (Alberto) --- STEER/AliCDBPath.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STEER/AliCDBPath.cxx b/STEER/AliCDBPath.cxx index 6e658296c36..ee170c8d21b 100644 --- a/STEER/AliCDBPath.cxx +++ b/STEER/AliCDBPath.cxx @@ -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); } -- 2.39.3