Source
689
689
return globalXMinMax_;
690
690
}
691
691
692
692
bool PlotMSIndexer::isGlobalYRange() const {
693
693
return globalYMinMax_;
694
694
}
695
695
696
696
void PlotMSIndexer::setGlobalMinMax(Bool globalX, Bool globalY ) {
697
697
globalXMinMax_=globalX;
698
698
globalYMinMax_=globalY;
699
-
};
699
+
}
700
+
701
+
Int PlotMSIndexer::nChunk() const {
702
+
return plotmscache_ ? plotmscache_->nChunk() : 0;
703
+
}
704
+
705
+
inline Double PlotMSIndexer::refTime() {
706
+
return plotmscache_->refTime();
707
+
}
700
708
701
709
void PlotMSIndexer::setChunk(uInt i) const {
702
710
703
711
// NB: this method assumes that i>=lasti, for now
704
712
705
713
if (i==lasti_)
706
714
// already found this one on previous call (e.g., for mask
707
715
// or the other axis), so change nothing
708
716
return;
709
717