Changeset 16110 for trunk/Mars/mdrs
- Timestamp:
- 05/24/13 14:13:53 (12 years ago)
- Location:
- trunk/Mars/mdrs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mdrs/MDrsCalibApply.cc
r14922 r16110 205 205 fResult->fData.resize(fPrevStart.size()*2); 206 206 207 deque<vector<Short_t>>::const_iterator it = fPrevStart.begin();207 list<vector<Short_t>>::const_iterator it = fPrevStart.begin(); 208 208 209 209 for (size_t i=0; i<fPrevStart.size()*2; i++) -
trunk/Mars/mdrs/MDrsCalibApply.h
r14922 r16110 10 10 #endif 11 11 12 #include < deque>12 #include <list> 13 13 14 14 class MRawRunHeader; … … 43 43 MDrsCalibResult *fResult; //! Output container 44 44 45 std:: deque<std::vector<Short_t>> fPrevStart; //! History for start cells of previous events45 std::list<std::vector<Short_t>> fPrevStart; //! History for start cells of previous events 46 46 47 47 UShort_t fMaxNumPrevEvents;
Note:
See TracChangeset
for help on using the changeset viewer.