Changeset 16110


Ignore:
Timestamp:
05/24/13 14:13:53 (12 years ago)
Author:
tbretz
Message:
Replaced deque by list
Location:
trunk/Mars/mdrs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mdrs/MDrsCalibApply.cc

    r14922 r16110  
    205205        fResult->fData.resize(fPrevStart.size()*2);
    206206
    207         deque<vector<Short_t>>::const_iterator it = fPrevStart.begin();
     207        list<vector<Short_t>>::const_iterator it = fPrevStart.begin();
    208208
    209209        for (size_t i=0; i<fPrevStart.size()*2; i++)
  • trunk/Mars/mdrs/MDrsCalibApply.h

    r14922 r16110  
    1010#endif
    1111
    12 #include <deque>
     12#include <list>
    1313
    1414class MRawRunHeader;
     
    4343    MDrsCalibResult        *fResult;         //! Output container
    4444
    45     std::deque<std::vector<Short_t>> fPrevStart; //! History for start cells of previous events
     45    std::list<std::vector<Short_t>> fPrevStart; //! History for start cells of previous events
    4646
    4747    UShort_t fMaxNumPrevEvents;
Note: See TracChangeset for help on using the changeset viewer.