|
Gaudi Framework, version v21r7 |
| Home | Generated: 22 Jan 2010 |
#include "THistSvc.h"#include "GaudiKernel/SvcFactory.h"#include "GaudiKernel/ISvcLocator.h"#include "GaudiKernel/MsgStream.h"#include "GaudiKernel/Tokenizer.h"#include "GaudiKernel/GaudiException.h"#include "GaudiKernel/Property.h"#include "TROOT.h"#include "TFile.h"#include "TDirectory.h"#include "TKey.h"#include "TError.h"#include "TGraph.h"#include <sstream>#include <streambuf>#include <cstdio>

Go to the source code of this file.
Functions | |
| void | toupper (std::string &s) |
| void toupper | ( | std::string & | s | ) | [inline] |
Definition at line 26 of file THistSvc.cpp.
00027 { 00028 std::string::iterator it=s.begin(); 00029 while(it != s.end()) 00030 { 00031 *it = toupper(*it); 00032 it++; 00033 } 00034 }