~ubuntu-branches/ubuntu/wily/openms/wily

« back to all changes in this revision

Viewing changes to source/EXAMPLES/Tutorial_FeatureFinder.C

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2013-12-20 11:30:16 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20131220113016-wre5g9bteeheq6he
Tags: 1.11.1-3
* remove version number from libbost development package names;
* ensure that AUTHORS is correctly shipped in all packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <OpenMS/TRANSFORMATIONS/FEATUREFINDER/FeatureFinder.h>
2
 
#include <OpenMS/TRANSFORMATIONS/FEATUREFINDER/FeatureFinder_impl.h>
3
 
 
4
 
using namespace OpenMS;
5
 
using namespace std;
6
 
 
7
 
Int main()
8
 
{
9
 
  FeatureFinder ff;
10
 
  // ... set parameters (e.g. from INI file)
11
 
  Param parameters;
12
 
  // ... set input data (e.g. from mzML file)
13
 
  MSExperiment<> input;
14
 
  // ... set output data structure
15
 
  FeatureMap<> output;
16
 
  // ... set user-specified seeds, if needed
17
 
        FeatureMap<> seeds;
18
 
 
19
 
  ff.run("simple", input, output, parameters, seeds);
20
 
  
21
 
  return 0;
22
 
} //end of main