void TOFPeakTest<PeakType>::testGetSetTOF() {
	PeakType peak;
	peak.setTOF(23.42);
	CPPUNIT_ASSERT_EQUAL(23.42, peak.getTOF());
}