|
Gaudi Framework, version v21r8 |
| Home | Generated: 17 Mar 2010 |
#include "THistSvc.h"#include "GaudiKernel/SvcFactory.h"#include "GaudiKernel/ISvcLocator.h"#include "GaudiKernel/Tokenizer.h"#include "GaudiKernel/GaudiException.h"#include "GaudiKernel/Property.h"#include "GaudiKernel/IIncidentSvc.h"#include "GaudiKernel/IEventProcessor.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 27 of file THistSvc.cpp.
00028 { 00029 std::string::iterator it=s.begin(); 00030 while(it != s.end()) 00031 { 00032 *it = toupper(*it); 00033 it++; 00034 } 00035 }