File: Tutorial_Logger.cpp

package info (click to toggle)
openms 2.4.0-real-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 646,136 kB
  • sloc: cpp: 392,260; xml: 215,373; python: 10,976; ansic: 3,325; php: 2,482; sh: 901; ruby: 399; makefile: 141; perl: 85
file content (18 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! [Logger] 

  ProgressLogger progresslogger;
    progresslogger.setLogType(log_type_);  // set the log type (command line or a file)

    // set start progress (0) and end (ms_run.size() = the number of spectra)
    progresslogger.startProgress(0, ms_run.size(), "Doing some calculation...");

    for (PeakMap::Iterator it = ms_run.begin(); it != ms_run.end(); ++it)
    {
	  // update progress
         progresslogger.setProgress(ms_run.end() - it);
      
	  // do the actual calculations and processing ...
    }
    progresslogger.endProgress();

//! [Logger]