#ifndef CPRWIRESET_HH #define CPRWIRESET_HH #include #include #include #include #include "Edm/EventRecord.hh" #include "AbsEnv/AbsEnv.hh" #include "StripChamberGeometry/CdfCprWedge.hh" #include "StripChamberGeometry/CprWedgeCode.hh" #include "CalorObjects/CprWire.hh" #include "BaBar/Cdf.hh" class CprWireSet { public: CprWireSet(AbsEvent*); virtual ~CprWireSet(); // // int nWires( const CdfCprWedge*) const; CprWire get_wire( const CdfCprWedge*, int ) const; protected: mutable std::map > _wireVector; }; #endif