fdhwlib
2.0.25
|
00001 /*************************************************************************** 00002 subrackboard.h - description 00003 ------------------- 00004 begin : Mo Jul 11 2005 00005 copyright : (C) 2005 by 00006 email : 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef SUBRACKBOARD_H 00019 #define SUBRACKBOARD_H 00020 00021 #include <string> 00022 00023 #include <Hw/subrackboardbase.h> 00024 #include <Hw/feunitdata.h> 00025 00026 class FltRegister; 00027 class FltPixRegister; 00028 class FltMemory; 00029 class SltRegister; 00030 class SltRegisterVector; 00031 class SltMemory; 00032 00038 class SubrackBoard : public SubrackBoardBase { 00039 public: 00040 SubrackBoard(); 00041 virtual ~SubrackBoard(); 00042 00044 FltRegister ** fltReg; 00045 00046 int nFltRegs; 00047 00049 FltPixRegister ** fltRegVector; 00050 00051 int nFltVRegs; 00052 00054 FltMemory ** fltMemory; 00055 00056 int nFltMems; 00057 00059 SltRegister ** sltReg; 00060 00061 int nSltRegs; 00062 00064 SltRegisterVector ** sltRegVector; 00065 00066 int nSltVRegs; 00067 00069 SltMemory ** sltMemory; 00070 00071 int nSltMems; 00072 00077 int help(FEunitData **data); 00078 00084 int help(const char *name, FEunitData **data); 00085 00090 int read(const char *name, FEunitData **data); 00091 }; 00092 00093 #endif // SUBRACKBOARD_H