// Author: Thomas Hadig (Group EB SLAC Stanford CA USA)
// Last update: $Date: 2003/08/22 22:31:11 $
// Copyright: Thomas Hadig, hadig@slac.stanford.edu

#ifndef __CRTGPIBCRATE_CXX
#define __CRTGPIBCRATE_CXX

////////////////////////////////////////////////////////////////////////////////
//
// Cosmic Ray Telescope Data Aquisition Software
//
// generic GPIB controler class
//
////////////////////////////////////////////////////////////////////////////////

#include <gendriver/gpibcrate.hh>

namespace CRT
 { 
  //{{{}}}
  //{{{  constructor
  CrtGpibCrate::CrtGpibCrate()
   {
    // default constructor
   }
  //}}}
  //{{{  constructor CrtGpibCrate(const Char_t *inName)
  CrtGpibCrate::CrtGpibCrate(const Char_t *inName) : CrtCrate(inName)
   { 
    // constructor
   }
  //}}}
  //{{{  destructor
   CrtGpibCrate::~CrtGpibCrate()
   {
    // destructor
   }
  //}}}
  //{{{  SetInhibit
   void CrtGpibCrate::SetInhibit() const
   { 
    // sets inhibit on GPIB bus
    // ... as there is no inhibit, nothing to do
   }
  //}}}
  //{{{  ClearInhibit
   void CrtGpibCrate::ClearInhibit() const
   {
    // clears inhibit on GPIB bus
    // ... as there is no inhibit, nothing to do
   }
  //}}}
 }
 
ClassImp(CRT::CrtGpibCrate) //generic driver for a GPIB controler

#endif


ROOT page - Class index - Class Hierarchy - 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.