//Author: Dariusz Mi$kowiec
//Date:   1999

///////////////////////////////////////////////////////////////////////////////
// DL600 is a VME module built at Physics Institute of Heidelberg University. 
// It houses 4 submodules, and I decided to treat these submodules in my 
// software as separate VME modules. The submodules are:
//
// DL631 - input register
// DL632 - output register
// DL633 - AND/OR logic unit
// DL634 - fan-out 
// 
///////////////////////////////////////////////////////////////////////////////

#include "DDL633.h"

#ifdef COMPIL 
  ClassImp(DDL633)
#endif

//*****************************************************************************
 DDL633::DDL633(Char_t *mdesc, UInt_t addr) : 
       DModule("AND/OR Logic","DL633",mdesc,addr) {
  cout<<"constructing DDL633n";
}
//-----------------------------------------------------------------------------
 DDL633::~DDL633() {
  cout<<"destroying DDL633n";
}
//-----------------------------------------------------------------------------
 void DDL633::ReadVME() {
  Access("r", 0, 2, &fLogic);
  fLogic = fLogic & 0xff;
}
//-----------------------------------------------------------------------------
 void DDL633::ResetModule() {
  UInt_t addr = 0x80 - (GetAdBase() & 0xff);
  Access("w", addr, 2, &fDummy);
}
//*****************************************************************************


ROOT page - Class index - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.