Skip to content

ecristal/artdaq_run_control_gui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

artdaq_run_control_gui

run the GUI: #DAQInterface must be configured(all artdaq environment variables setuped and source_me sourced) ./ARTDAQ_console

build from source code proccess:
-qmake -o Makefile ARTDAQ_console.pro -make

IMPORTANT: add these lines to daqinterface.py located at your local installation of artdaq-daqinterface ($ARTDAQ_DAQINTERFACE_DIR/rc/control/daqinterface.py):

#after "import os":

class Unbuffered(object): def init(self, stream): self.stream = stream def write(self, data): self.stream.write(data) self.stream.flush() def writelines(self, datas): self.stream.writelines(datas) self.stream.flush() def getattr(self, attr): return getattr(self.stream, attr)

#after "import sys":

sys.path.append( os.getcwd() ) sys.stdout = Unbuffered(sys.stdout)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published