Changeset 19064
- Timestamp:
- 07/19/18 18:09:58 (6 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/EventBuilder.cc
r19027 r19064 8 8 #include <list> 9 9 #include <queue> 10 #include <functional> // std::bind 10 11 11 12 #include <boost/algorithm/string/join.hpp> -
trunk/FACT++/src/FitsFile.cc
r18053 r19064 295 295 // double check that the data was indeed read from the disk. 296 296 // Go through the fTable instead as colName is empty (yes, it is !) 297 const map<string,CCfits::Column*>&cMap = table->column();297 const auto &cMap = table->column(); 298 298 299 299 //check that the existing columns are the same as the ones we want to write -
trunk/FACT++/src/MessageDim.h
r17230 r19064 1 1 #ifndef FACT_MessageDim 2 2 #define FACT_MessageDim 3 4 #include <functional> // std::function 3 5 4 6 #include "MessageImp.h" -
trunk/FACT++/src/StateMachineImp.h
r16730 r19064 7 7 #include <vector> 8 8 #include <memory> 9 #include <functional> // std::function 9 10 #include <condition_variable> 10 11 -
trunk/FACT++/src/WindowLog.h
r18868 r19064 6 6 #include <vector> 7 7 #include <fstream> 8 #include <functional> // std::bind 8 9 9 10 #include <ncurses.h> // A_NORMAL etc … … 95 96 } 96 97 WindowLog(WindowLog const& log) : std::ios(), std::streambuf(), std::ostream((std::streambuf*)&log), fWindow(log.fWindow), fIsNull(false), fEnableBacklog(true), 97 fQueueFile( bind(&WindowLog::WriteFile, this, std::placeholders::_1))98 fQueueFile(std::bind(&WindowLog::WriteFile, this, std::placeholders::_1)) 98 99 { 99 100 //fLogFile.rdbuf()->pubsetbuf(0,0); // Switch off buffering -
trunk/FACT++/src/drivectrl.cc
r19034 r19064 1 #include <numeric> // std::accumulate 2 1 3 #include <boost/regex.hpp> 2 4 #include <boost/algorithm/string.hpp> -
trunk/FACT++/src/smartfact.cc
r19015 r19064 9 9 #include <sys/stat.h> //for file stats 10 10 #include <sys/statvfs.h> //for file statvfs 11 12 #include <numeric> // std::accumulate 11 13 12 14 #include "Dim.h"
Note:
See TracChangeset
for help on using the changeset viewer.