//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 "DDL634.h"

#ifdef COMPIL 
  ClassImp(DDL634)
#endif

//*****************************************************************************
 DDL634::DDL634(Char_t *mdesc, UInt_t addr) : 
       DModule("Fan Out","DL634",mdesc,addr) {
  cout<<"constructing DDL634n";
}
//-----------------------------------------------------------------------------
 DDL634::~DDL634() {
  cout<<"destroying DDL634n";
}
//-----------------------------------------------------------------------------
 void DDL634::ReadVME() {
  Access("r", 0, 2, &fFanout);
  fFanout = fFanout & 0xf;
}
//-----------------------------------------------------------------------------
 void DDL634::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.