00001
00002
00003
00004
00005 #ifndef SCSTEERPARAM_HH
00006 #define SCSTEERPARAM_HH
00007
00008 #include "mTypes.h"
00009
00010
00011
00012
00013
00014
00015 class SCSteerParams {
00016 public:
00017 ui32 scId;
00018 std::string type;
00019 ui32 chamberId;
00020 ui32 difId;
00021 ui32 boardId;
00022 ui32 pmId;
00023 std::string name;
00024 public:
00025 inline SCSteerParams(const ui32 aScId, const std::string aType,const ui32 aChamberId, const ui32 aDifId, const ui32 aBoardId, const ui32 aPmId, const std::string aName)
00026 : scId(aScId), type(aType), chamberId(aChamberId), difId(aDifId), boardId(aBoardId), pmId(aPmId), name(aName) { };
00027
00028
00029 };
00030
00031 #endif