Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

Dcs_Rps Class Reference

#include <Dcs_Rps.h>

Inheritance diagram for Dcs_Rps:

DbiTableRow List of all members.

Public Member Functions

 Dcs_Rps ()
 Dcs_Rps (const Dcs_Rps &from)
 Dcs_Rps (UInt_t n, UInt_t r, UInt_t s, UInt_t w, UInt_t e)
virtual ~Dcs_Rps ()
Bool_t CanL2Cache () const
Bool_t Compare (const Dcs_Rps &that) const
UInt_t GetIndex (UInt_t) const
Int_t GetRackno () const
Int_t GetRackraw () const
Int_t GetRackstatus () const
Int_t GetWarning () const
Int_t GetError () const
Int_t GetAggregateNo () const
virtual void Fill (DbiResultSet &rs, const DbiValidityRec *vrec)
virtual void Store (DbiOutRowStream &ors, const DbiValidityRec *vrec) const
virtual DbiTableRowCreateTableRow () const

Private Attributes

Int_t iRackno
Int_t iRackraw
Int_t iRackstatus
Int_t iWarn
Int_t iErr

Constructor & Destructor Documentation

Dcs_Rps::Dcs_Rps  )  [inline]
 

Definition at line 28 of file Dcs_Rps.h.

00028 { }

Dcs_Rps::Dcs_Rps const Dcs_Rps from  )  [inline]
 

Definition at line 29 of file Dcs_Rps.h.

00029 : DbiTableRow(from) { *this = from; }

Dcs_Rps::Dcs_Rps UInt_t  n,
UInt_t  r,
UInt_t  s,
UInt_t  w,
UInt_t  e
[inline]
 

Definition at line 30 of file Dcs_Rps.h.

References iErr, iRackno, iRackraw, iRackstatus, iWarn, and s().

00030                                                             :
00031    iRackno(n),iRackraw(r),iRackstatus(s),iWarn(w), iErr(e) { }
  virtual ~Dcs_Rps(){ };

virtual Dcs_Rps::~Dcs_Rps  )  [inline, virtual]
 

Definition at line 32 of file Dcs_Rps.h.

00032 { };


Member Function Documentation

Bool_t Dcs_Rps::CanL2Cache  )  const [inline, virtual]
 

Reimplemented from DbiTableRow.

Definition at line 36 of file Dcs_Rps.h.

00036 { return kTRUE; }

Bool_t Dcs_Rps::Compare const Dcs_Rps that  )  const [inline]
 

Definition at line 37 of file Dcs_Rps.h.

References iErr, iRackno, iRackraw, iRackstatus, and iWarn.

00037                                              {
00038                 return     iRackno == that.iRackno
00039                        &&  iRackraw  == that.iRackraw
00040                        &&  iRackstatus  == that.iRackstatus
00041                        &&  iWarn     == that.iWarn
00042                        &&  iErr     == that.iErr; }

virtual DbiTableRow* Dcs_Rps::CreateTableRow  )  const [inline, virtual]
 

Implements DbiTableRow.

Definition at line 56 of file Dcs_Rps.h.

00056 { return new Dcs_Rps; }

void Dcs_Rps::Fill DbiResultSet rs,
const DbiValidityRec vrec
[virtual]
 

Implements DbiTableRow.

Definition at line 30 of file Dcs_Rps.cxx.

00031                                                           {
00032 //
00033 //
00034 //  Purpose:  Fill object from Result Set
00035 //
00036 //  Arguments: 
00037 //    rs           in    Result Set used to fill object
00038 //    vrec         in    Associated validity record (or 0 if filling
00039 //                                                    DbiValidityRec)
00040 //
00041 //  o Fill object from current row of Result Set.
00042 //  This method demonstrates both the "dumb" fill method (just
00043 //  load the data as it comes) and the smart method (check column
00044 //  name and load according to column order). 
00045 
00046 //  if (    rs.TableName() != "DCS_RPS" 
00047 //       && rs.TableName() != "Dcs_Rps" ) {
00048     
00049 // Dumb method.
00050           rs >> iRackno >> iRackraw >> iRackstatus >> iWarn >> iErr;
00051 
00052 //  }
00053   
00054 // Smart method
00055 /*  else {
00056     Int_t numCol = rs.NumCols();
00057     //  The first column (SeqNo) has already been processed.
00058     for (Int_t curCol = rs.HasRowCounter() ? 3 : 2; curCol <= numCol; ++curCol) {
00059       string colName = rs.CurColName();
00060       if (      colName == "RPS_RACKNO" ) rs >> iRackno;
00061       else if ( colName == "RPS_PACKEDDATA" )  rs >> iRackraw;
00062       else if ( colName == "RPS_RACKSTATUS" )     rs >> iRackstatus;
00063       else if ( colName == "RPS_ISWARN" )     rs >> iWarn;
00064       else if ( colName == "RPS_ISERROR" )     rs >> iErr;
00065       else {
00066         MSG("Dbi",Msg::kDebug) << "Ignoring column " << curCol 
00067                                << "(" << colName << ")"
00068                               << "; not part of DcsRps" << endl;
00069         rs.IncrementCurCol();
00070       }
00071     }
00072     
00073   }
00074 */
00075 }

Int_t Dcs_Rps::GetAggregateNo  )  const [inline, virtual]
 

Reimplemented from DbiTableRow.

Definition at line 50 of file Dcs_Rps.h.

00050 { return iRackno; }

Int_t Dcs_Rps::GetError  )  const [inline]
 

Definition at line 49 of file Dcs_Rps.h.

00049 { return iErr; }

UInt_t Dcs_Rps::GetIndex UInt_t   )  const [inline, virtual]
 

Reimplemented from DbiTableRow.

Definition at line 44 of file Dcs_Rps.h.

00044 { return iRackno; }

Int_t Dcs_Rps::GetRackno  )  const [inline]
 

Definition at line 45 of file Dcs_Rps.h.

00045 { return iRackno; }

Int_t Dcs_Rps::GetRackraw  )  const [inline]
 

Definition at line 46 of file Dcs_Rps.h.

00046 { return iRackraw; }

Int_t Dcs_Rps::GetRackstatus  )  const [inline]
 

Definition at line 47 of file Dcs_Rps.h.

00047 { return iRackstatus; }

Int_t Dcs_Rps::GetWarning  )  const [inline]
 

Definition at line 48 of file Dcs_Rps.h.

00048 { return  iWarn; }

void Dcs_Rps::Store DbiOutRowStream ors,
const DbiValidityRec vrec
const [virtual]
 

Reimplemented from DbiTableRow.

Definition at line 78 of file Dcs_Rps.cxx.

References iRackno, iRackraw, iRackstatus, and iWarn.

00079                                                                  {
00080 //  Purpose:  Stream object to output row stream
00081 //
00082 //  Arguments: 
00083 //    ors          in     Output row stream.
00084 //    vrec         in    Associated validity record (or 0 if filling
00085 //                                                    DbiValidityRec)
00086 //  o  Stream object to output row stream.
00087 
00088   ors << iRackno << iRackraw << iRackstatus << iWarn << iErr;
00089 }


Member Data Documentation

Int_t Dcs_Rps::iErr [private]
 

Definition at line 66 of file Dcs_Rps.h.

Referenced by Compare(), and Dcs_Rps().

Int_t Dcs_Rps::iRackno [private]
 

Definition at line 62 of file Dcs_Rps.h.

Referenced by Compare(), Dcs_Rps(), and Store().

Int_t Dcs_Rps::iRackraw [private]
 

Definition at line 63 of file Dcs_Rps.h.

Referenced by Compare(), Dcs_Rps(), and Store().

Int_t Dcs_Rps::iRackstatus [private]
 

Definition at line 64 of file Dcs_Rps.h.

Referenced by Compare(), Dcs_Rps(), and Store().

Int_t Dcs_Rps::iWarn [private]
 

Definition at line 65 of file Dcs_Rps.h.

Referenced by Compare(), Dcs_Rps(), and Store().


The documentation for this class was generated from the following files:
Generated on Mon Feb 15 11:09:06 2010 for loon by  doxygen 1.3.9.1