14 # pragma warning( disable : 2259 )
25 #include <TProfile2D.h>
30 return className ==
"AIDA::IProfile2D"
31 ?
const_cast<AIDA::IProfile2D*
>(
static_cast<const AIDA::IProfile2D*
>( this ) )
32 : className ==
"AIDA::IProfile" ?
const_cast<AIDA::IProfile*
>(
static_cast<const AIDA::IProfile*
>( this ) )
33 : className ==
"AIDA::IBaseHistogram"
34 ?
const_cast<AIDA::IBaseHistogram*
>(
static_cast<const AIDA::IBaseHistogram*
>( this ) )
40 int rBin = m_rep->GetBin( rIndexX( idX ), rIndexY( idY ) );
41 return int( m_rep->GetBinEntries( rBin ) + 0.5 );
46 TProfile2D* imp =
dynamic_cast<TProfile2D*
>( rep );
47 if ( !imp )
throw std::runtime_error(
"Cannot adopt native histogram representation." );
49 m_xAxis.initialize( m_rep->GetXaxis(),
true );
50 m_yAxis.initialize( m_rep->GetYaxis(),
true );
51 setTitle( m_rep->GetTitle() );
56 const std::string& title,
const Edges& eX,
57 const Edges& eY,
double ,
double ) {
59 auto p =
new Profile2D(
new TProfile2D( title.c_str(), title.c_str(), eX.size() - 1, &eX.front(), eY.size() - 1,
66 const std::string& title,
int binsX,
double xlow,
67 double xup,
int binsY,
double ylow,
double yup,
68 double zlow,
double zup ) {
70 new Profile2D(
new TProfile2D( title.c_str(), title.c_str(), binsX, xlow, xup, binsY, ylow, yup, zlow, zup ) );
76 const AIDA::IProfile2D& hist ) {
77 auto h = getRepresentation<AIDA::IProfile2D, TProfile2D>( hist );
78 auto n = (
h ?
new Profile2D(
new TProfile2D( *
h ) ) :
nullptr );
85 rep->SetDirectory(
nullptr );