#include <utility>
#include <vector>
#include <iostream>
#include <string>
#include <sstream>
Go to the source code of this file.
Classes | |
class | pftools::CaloEllipse |
Namespaces | |
namespace | pftools |
General option file parser. | |
Defines | |
#define | TOSTR_H |
Typedefs | |
typedef std::pair< double, double > | pftools::Point |
typedef PointVector::const_iterator | pftools::PointCit |
typedef PointVector::iterator | pftools::PointIt |
typedef std::vector< Point > | pftools::PointVector |
Functions | |
std::ostream & | pftools::operator<< (std::ostream &s, const CaloEllipse &em) |
template<class T > | |
std::string | toString (const std::pair< T, T > &aT) |
#define TOSTR_H |
Definition at line 69 of file CaloEllipse.h.
Definition at line 72 of file CaloEllipse.h.
Referenced by RPCRunIOV::chamberName(), HcalLutManager::get_brickSet_from_oracle(), HcalChannelQualityXml::getBaseLineFromOmds(), HcalQIEManager::getHfQieTable(), HcalChannelQualityXml::getIovsFromOmds(), HcalAssistant::getListOfChannelsFromDb(), HcalO2OManager::getListOfOmdsIovs(), HcalO2OManager::getListOfOmdsTags(), pftools::SpaceVoxel::getName(), HCALConfigDB::getOnlineLUT(), HCALConfigDB::getOnlineLUTFromXML(), HcalQIEManager::getTableFromDb(), HcalChannelQualityXml::getTagsFromOmds(), pftools::operator<<(), and ora::OId::toOutputStream().
{ std::ostringstream oss; oss << "(" << aT.first << ", " << aT.second << ")"; return oss.str(); }