autoTable SpectrumTier_downto_Table (SpectrumTier me, bool includeIndexes, bool includeFrequency, bool includePowerDensity) {
    return RealTier_downto_Table (me,
                                  includeIndexes ? U"index" : nullptr,
                                  includeFrequency ? U"freq(Hz)" : nullptr,
                                  includePowerDensity ? U"pow(dB/Hz)" : nullptr);
}
Table SpectrumTier_downto_Table (SpectrumTier me, bool includeIndexes, bool includeFrequency, bool includePowerDensity) {
	return RealTier_downto_Table (me,
		includeIndexes ? L"index" : NULL,
		includeFrequency ? L"freq(Hz)" : NULL,
		includePowerDensity ? L"pow(dB/Hz)" : NULL);
}