]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
corrected string operation
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 21 Nov 2011 09:53:52 +0000 (09:53 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 21 Nov 2011 09:53:52 +0000 (09:53 +0000)
HLT/BASE/AliHLTTTreeProcessor.cxx

index 6864f58f000690449696ec4d365bf606129e0eb0..3972bbecd9b42eff9ab2b83b0f29641bd307ab09 100644 (file)
@@ -494,15 +494,10 @@ TH1* AliHLTTTreeProcessor::CreateHistogram(const AliHLTHistogramDefinition& d)
   if(d.GetTitle().Length()){
   
     //removing underscore
-    size_t found;
-    string str=d.GetTitle().Data();
-    found=str.find_first_of("_");
-    if(!(d.GetExpression().CompareTo("Track_pt"))){
-      found=str.find_first_of("_",found+1);      
-    }
-    str[found]=' ';
-    char axis[100];
-    sprintf(axis,"%s",str.c_str());
+    TString axis=d.GetTitle().Data();
+    axis.ReplaceAll("_{T}", "underscore{T}");
+    axis.ReplaceAll("_", " ");
+    axis.ReplaceAll("underscore{T}", "_{T}");
   
     hist->SetXTitle(axis);
     hist->GetXaxis()->CenterTitle();