#include <PhotonLookupTableRow.h>
Inheritance diagram for PhotonLookupTableRow:

Public Member Functions | |
| PhotonLookupTableRow () | |
| PhotonLookupTableRow (double x, double y) | |
| UInt_t | GetIndex (UInt_t) const |
| Double_t | GetX () const |
| Double_t | GetY () const |
| virtual DbiTableRow * | CreateTableRow () const |
| virtual void | Fill (DbiResultSet &rs, const DbiValidityRec *vrec) |
| virtual void | Store (DbiOutRowStream &ors, const DbiValidityRec *vrec) const |
Private Member Functions | |
| ClassDef (PhotonLookupTableRow, 1) | |
Private Attributes | |
| Double_t | fx |
| Double_t | fy |
|
|
Definition at line 9 of file PhotonLookupTableRow.h.
|
|
||||||||||||
|
Definition at line 10 of file PhotonLookupTableRow.h.
|
|
||||||||||||
|
|
|
|
Implements DbiTableRow. Definition at line 16 of file PhotonLookupTableRow.h. 00017 { return new PhotonLookupTableRow; };
|
|
||||||||||||
|
Implements DbiTableRow. Definition at line 17 of file PhotonLookupTableRow.cxx. Referenced by PhotonLookupTable::MakeRandomHisto(). 00019 {
00020 // only impliment 'dumb' method. I don't care about column names.
00021 rs >> fx >> fy;
00022 }
|
|
|
Reimplemented from DbiTableRow. Definition at line 12 of file PhotonLookupTableRow.h. 00012 { return (int)fx; };
|
|
|
Definition at line 13 of file PhotonLookupTableRow.h. Referenced by PhotonLookupTable::Rebuild(). 00013 { return fx; };
|
|
|
Definition at line 14 of file PhotonLookupTableRow.h. Referenced by PhotonLookupTable::Rebuild(). 00014 { return fy; };
|
|
||||||||||||
|
Reimplemented from DbiTableRow. Definition at line 26 of file PhotonLookupTableRow.cxx. References fx. 00027 {
00028 ors << fx << fy;
00029 }
|
|
|
Definition at line 24 of file PhotonLookupTableRow.h. Referenced by PhotonLookupTableRow(), and Store(). |
|
|
Definition at line 25 of file PhotonLookupTableRow.h. Referenced by PhotonLookupTableRow(). |
1.3.9.1