#ifndef SCSTRIPSET_HH #define SCSTRIPSET_HH #include #include #include #include #include "Edm/EventRecord.hh" #include "AbsEnv/AbsEnv.hh" #include "StripChamberGeometry/CdfScWedge.hh" #include "StripChamberGeometry/ScWedgeCode.hh" #include "CalorObjects/ScStrip.hh" #include "CalorObjects/ScWire.hh" #include "BaBar/Cdf.hh" class ScStripSet { public: ScStripSet(AbsEvent*); virtual ~ScStripSet(); // // int nStrips( const CdfScWedge*) const; int nWires ( const CdfScWedge*) const; ScStrip get_strip( const CdfScWedge*, int ) const; ScWire get_wire( const CdfScWedge*, int ) const; protected: mutable std::map > _stripVector; mutable std::map > _wireVector; }; #endif