FairRoot/PandaRoot
PndMQMergerTest.cxx
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
3  * *
4  * This software is distributed under the terms of the *
5  * GNU Lesser General Public Licence version 3 (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
15 #include <boost/thread.hpp>
16 #include <boost/bind.hpp>
17 #include <boost/archive/binary_oarchive.hpp>
18 
19 #include "baseMQtools.h"
20 
21 #include "PndMQMerger.h"
22 #include "PndMQMergerTest.h"
23 
24 using namespace std;
25 
27 {
28 }
29 
30 
31 void PndMQMergerTest::ProcessData(std::map<std::string, BurstData>& dataToProcess)
32 {
33  for (auto itr : dataToProcess){
34  LOG(INFO) << "Data in Burst: " << itr.first;
35 // for (auto eventItr : itr.second.fData)
36 // for (auto dataItr : eventItr)
37 // LOG(INFO) << dataItr->GetTimeStamp();
38  }
39  LOG(INFO) << "Finished!";
40 }
virtual void ProcessData(std::map< std::string, BurstData > &dataToProcess)