Skip to content
Snippets Groups Projects
Commit 6f1cf1c0 authored by Antoine Lemasson's avatar Antoine Lemasson
Browse files

Adding Debug Flags

parent f11fa6a9
No related branches found
No related tags found
No related merge requests found
...@@ -184,8 +184,10 @@ void Map::AddMesytecData(const UInt_t& key,const UShort_t& Data,const ULong64_t& ...@@ -184,8 +184,10 @@ void Map::AddMesytecData(const UInt_t& key,const UShort_t& Data,const ULong64_t&
try{ try{
if((Lbl= GetMesytecAddress(key))) if((Lbl= GetMesytecAddress(key)))
{ {
// cout << "Set Data to Numexo " << key << " Data " << Data << "Pile Up" << PileUp << endl; #ifdef DEBUG
Lbl->AddRawData(GetMesytecNumber(key),Data,TS,-1,-1,Time); cout << "Set Data to Mesytec " << key << " ("<<GetMesytecNumber(key)<<") - Lbl " << Lbl << "--> Data : " << Data << " TS : " << TS << endl;
#endif
Lbl->AddRawData(GetMesytecNumber(key),Data,TS,-1,-1,Time);
} }
} }
catch (MErr * Er) catch (MErr * Er)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment