00001 #ifndef SCTAPI_FWD_DEF_H
00002 #define SCTAPI_FWD_DEF_H
00003
00004
00005 namespace SctApi {
00006 class SctApi;
00007 class Trigger;
00008 class Scan;
00009
00010 class TriggerImpl;
00011 class ScanDefImpl;
00012
00013 class RodInfo;
00014
00015 class ScanControl;
00016
00017 enum BankType {SCTAPI_BANK_PHYSICS, SCTAPI_BANK_SCAN, SCTAPI_BANK_CALIBRATION};
00018 enum ConfigType {SCTAPI_CONFIG_BASIC, SCTAPI_CONFIG_TRIM, SCTAPI_CONFIG_ALL};
00019
00020 struct RodLabel {
00021 unsigned int partition;
00022 unsigned int crate;
00023 unsigned int rod;
00024
00025 RodLabel(unsigned int partition, unsigned int crate, unsigned int rod)
00026 : partition(partition), crate(crate), rod(rod) {}
00027
00028 RodLabel() : partition(0), crate(0), rod(0) {}
00029
00030 bool operator==(const RodLabel &) const;
00031 bool operator<(const RodLabel &) const;
00032 };
00033
00034 namespace Utility {
00035 class MemoryBlock;
00036 }
00037 }
00038
00039 #endif