53 for ( std::vector<TH2*>::iterator iter =
histos_.begin(); iter !=
histos_.end(); ++iter ) {
61 Int_t nBinsX = histos.front()->GetNbinsX();
62 Int_t nBinsY = histos.front()->GetNbinsY();
63 Int_t nHist = histos.size();
65 if ( nHist != nBinsX * nBinsY ) {
66 cerr <<
"ERROR in LauScfMap::setHistos : There should be as many histograms supplied as there are bins in each of them."
68 cerr <<
" : There are " << nHist <<
" histograms and "
69 << nBinsX * nBinsY <<
" bins." << endl;
80 for ( std::vector<TH2*>::iterator iter =
histos_.begin(); iter !=
histos_.end(); ++iter ) {
90 for ( std::vector<const TH2*>::const_iterator iter = histos.begin(); iter != histos.end();
92 TH2* histo =
dynamic_cast<TH2*
>( ( *iter )->Clone() );
94 cerr <<
"ERROR in LauScfMap::setHistos : Problem cloning one of the histograms." << endl;
95 gSystem->Exit( EXIT_FAILURE );
100 if (
histos_.size() != histos.size() ) {
101 cerr <<
"ERROR in LauScfMap::setHistos : Problem cloning the histograms." << endl;
102 gSystem->Exit( EXIT_FAILURE );
113 for ( Int_t j( 0 ); j <
nBinsY_; ++j ) {
114 for ( Int_t i( 0 ); i <
nBinsX_; ++i ) {
115 Int_t binNo =
histos_.front()->GetBin( i + 1, j + 1 );
116 std::vector<Int_t>& truBins =
contribs_[binNo];
117 truBins.reserve( nHist );
118 for ( Int_t k( 0 ); k < nHist; ++k ) {
119 Double_t content =
histos_[k]->GetBinContent( binNo );
120 if ( content > 0.0 ) {
121 truBins.push_back( k );
135 const TAxis* xAxis =
histos_.front()->GetXaxis();
136 Double_t xMax = xAxis->GetXmax();
137 Double_t xMin = xAxis->GetXmin();
138 Double_t xIncrement = (Double_t)( ( xMax - xMin ) /
nBinsX_ );
140 const TAxis* yAxis =
histos_.front()->GetYaxis();
141 Double_t yMax = yAxis->GetXmax();
142 Double_t yMin = yAxis->GetXmin();
143 Double_t yIncrement = (Double_t)( ( yMax - yMin ) /
nBinsY_ );
146 Double_t yCoord = yMin + yIncrement / 2;
147 for ( Int_t j( 1 ); j <=
nBinsY_; ++j ) {
148 Double_t xCoord = xMin + xIncrement / 2;
149 for ( Int_t i( 1 ); i <=
nBinsX_; ++i ) {
150 xCoords.push_back( xCoord );
151 yCoords.push_back( yCoord );
152 xCoord += xIncrement;
154 yCoord += yIncrement;
160 const TH2* histo =
histos_.front();
162 return histo->FindFixBin( xCoord, yCoord );
164 cerr <<
"ERROR in LauScfMap::recoBin : No valid histograms found." << endl;
171 std::map<Int_t, std::vector<Int_t>>::const_iterator iter =
contribs_.find( recoBin );
173 return &( iter->second );
181 const TH2* histo =
histos_[trueBin];
183 return histo->GetBinContent( recoBin );
185 cerr <<
"ERROR in LauScfMap::prob : No histogram found for true bin " << trueBin << endl;
193 Int_t x( 0 ), y( 0 ), z( 0 );
194 histos_.front()->GetBinXYZ( trueBin, x, y, z );
196 Int_t theBin =
nBinsX_ * ( y - 1 ) + ( x - 1 );
198 if ( theBin < 0 ||
static_cast<UInt_t
>( theBin ) >=
histos_.size() ) {
199 cerr <<
"ERROR in LauScfMap::trueHist : No histogram found for true bin " << trueBin
200 <<
", which corresponds to x=" << x <<
", y=" << y <<
", or entry " << theBin
201 <<
" in the vector." << endl;
202 gSystem->Exit( EXIT_FAILURE );
207 cerr <<
"ERROR in LauScfMap::trueHist : Null histogram pointer found for true bin "
208 << trueBin <<
", which corresponds to x=" << x <<
", y=" << y <<
", or entry "
209 << theBin <<
" in the vector." << endl;
210 gSystem->Exit( EXIT_FAILURE );