11 Feb 2014, Stefan Ritt, Forum, Huge events (>10MB) every second or so 
 | 
> I'm looking into using MIDAS for an experiment that creates one large event
 
> (20MB or more) every second.
 
> 
 | 
   
   11 Feb 2014, Stefan Ritt, Bug Report, mhttpd, etc. 
 | 
[quote="Andreas Suter"]I found a couple of bugs in the current mhttpd, midas version: "93fa5ed"[/quote]
 
 
See my reply on the issue tracker:
 | 
   
   12 Feb 2014, Stefan Ritt, Info, Custom page header implemented 
 | 
As reported in the bug tracker, the proposed header does not work if no specific (= different from the default 60 sec.) update period is specified, 
 
since then no cookie is present. Here is the updated code which works for all cases:
 
 | 
   
   19 Feb 2014, Stefan Ritt, Bug Fix, make dox 
 | 
> On most Linux systems, doxygen is easy to install. Red Hat instructions are here: 
 
> http://www.triumf.info/wiki/DAQwiki/index.php/SLinstall#Install_packages_needed_for_QUARTUS.2C_ROOT.2C_EPICS_and_MIDAS_DAQ
 
> 
 | 
   
   19 Feb 2014, Stefan Ritt, Info, Custom page header implemented 
 | 
> I am not sure what to do with the javascript snippet 
 
 
Just read elog:908, it tells you to put this into a file, name it header.html for example, and put into the ODB:
 | 
   
   28 Feb 2014, Stefan Ritt, Suggestion, runlog is "ugly" 
 | 
 > If I am not mistaken, the mhttpd.css is hard coded (path/name) into the mhttpd.
 
 
I agree that this should be removed, Unfortunately I'm away right now, so I will fix it next week. Also will put in 
 | 
   
   01 Mar 2014, Stefan Ritt, Forum, Huge events (>10MB) every second or so 
 | 
> Works, and here is how I did it. The attached example is based on the standard MIDAS
 
> example in "src/midas/examples/experiment". 
 
 | 
   
   07 Mar 2014, Stefan Ritt, Suggestion, runlog is "ugly" 
 | 
I put mhttpd.css and mhttpd.js into the ODB, so every experiment can change it. I put also Andreas' modifications of the CSS file for the runlog table and 
 
committed the changes.
 | 
   
   11 Mar 2014, Stefan Ritt, Forum, mlogger problem 
 | 
[quote="Andreas Suter"]I stumbled over a problem which I cannot pin point and would appreciate suggestions.
 
 
I set up an experiment, and all of a sudden I noticed the following behaviour.
 | 
   
   17 Mar 2014, Stefan Ritt, Info, Windows support droped? 
 | 
> The Windows executables are no longer included in the midas git repository. Old versions are still available in 
 
> the git repository - they got pulled in during conversion from svn.
 
> 
 | 
   
   16 Apr 2014, Stefan Ritt, Forum, C++11 error 
 | 
> I am having some trouble creating a frontend that interacts with some libraries that use C++11. 
 
> 
 
> The flag I added to my MIDAS Makefile to get the C++11 part of the code to work is -std=c++0x. This 
 | 
   
   17 Apr 2014, Stefan Ritt, Forum, C++11 error 
 | 
> Thanks for the suggestion. It looks like it is instead the TRIGGER_ALL that is causing the problem. TRIGGER_ALL is defined as -1 in midas.h. If I replace 
TRIGGER_ALL with 0 in the 
 
> frontend, it compiles, but if I use -1, I get the same error. I do not think that I want my trigger mask set to 0. Do you have a suggestion of how to | 
   
   26 May 2014, Stefan Ritt, Suggestion, "Edit-on-end" would be nice 
 | 
We have similar demands, and we solve it in the following:
 
 
We use a run database. In the simplest case, this can be a text file which gets written at the end of the file. The 
 | 
   
   12 Jun 2014, Stefan Ritt, Suggestion, Saving ODB values in a sequencer script 
 | 
> I have a possibly simple feature request for the MIDAS sequencer.  It would be
 
> helpful to be able to save an ODB key's value to a variable, for later use, and
 
> would be the analogue of the ODBSET command.  I had in mind an application where
 | 
   
   14 Oct 2014, Stefan Ritt, Bug Report, Hostile network scans against MIDAS RPC ports 
 | 
Doing this through the ODB seems ok to me. If the ODB cannot be accessed, you can fall back to no protection.
 
 
At PSI we fortunately do not have these network scans because PSI uses a institute-wide firewall. So you can connect from outside PSI to inside PSI only | 
   
   15 Oct 2014, Stefan Ritt, Bug Report, Problem in mfe multithread equipments 
 | 
You are absolutely correct, the code is certainly wrong. It looks to me like the 
 
 
while (rbh)
 | 
   
   15 Oct 2014, Stefan Ritt, Bug Report, Problem in mfe multithread equipments 
 | 
Please disregard my previous posting, you don't need the while loop, since it's already in the scheduler (around lines 2160 under /*---- send interrupt 
events ----*/). 
 
 | 
   
   15 Oct 2014, Stefan Ritt, Bug Report, Problem with EQ_USER 
 | 
Sure, each thread needs its own ring buffer for writing.
 
 
So I see that we need back the multiple-ring-buffer-readout-scheme even before MEG will start. So what you need is something like
 | 
   
   16 Oct 2014, Stefan Ritt, Bug Report, Problem with EQ_USER 
 | 
I restructured the front-end code to enable multiple readout threads for EQ_USER equipment. Last summer I was definitively interrupted during 
 
that work and left it in an half finished state, sorry for that.
 
 | 
   
   16 Oct 2014, Stefan Ritt, Bug Report, Problem in mfe multithread equipments 
 | 
> while (1)
 
>    wait 10 ms for an event
 
>    process event, loop back
 |