// galcrosslocator.h // Eric Aubourg CEA/DAPNIA/SPP octobre 1999 #ifndef GALCROSSLOCATOR_H #define GALCROSSLOCATOR_H #include "toipullproducer.h" class GalCrossLocator : public TOIPullProducer { public: GalCrossLocator(); virtual string getName(); virtual double getValue(long sampleNum, TOI const& toi); virtual bool canGetValue(long sampleNum, TOI const& toi); protected: virtual set reqTOIFor(TOI const&); }; #endif