// ------------------------------------------------------------------------- // ----- PndSdsCell source file ----- // ----- ----- // ------------------------------------------------------------------------- #include "stdlib.h" #include #include "PndSdsCell.h" // ----- Default constructor ------------------------------------------- PndSdsCell::PndSdsCell() { } // ------------------------------------------------------------------------- // ----- Standard constructor ------------------------------------------ PndSdsCell::PndSdsCell(unsigned int hitUp, unsigned int hitDw){ fhit_upstream = hitUp; fhit_downstream = hitDw; fpv = -1; } // ------------------------------------------------------------------------- // ----- Destructor ---------------------------------------------------- PndSdsCell::~PndSdsCell() {} // ------------------------------------------------------------------------- // ------------------------------------------------------------------------- ClassImp(PndSdsCell);