Gaia
extract.h
1 /*
2  * Copyright (C) 2006-2013 Music Technology Group - Universitat Pompeu Fabra
3  *
4  * This file is part of Gaia
5  *
6  * Gaia is free software: you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License as published by the Free
8  * Software Foundation (FSF), either version 3 of the License, or (at your
9  * option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the Affero GNU General Public License
17  * version 3 along with this program. If not, see http://www.gnu.org/licenses/
18  */
19 
20 #ifndef GAIA_EXTRACT_H
21 #define GAIA_EXTRACT_H
22 
23 #include "analyzer.h"
24 
25 namespace gaia2 {
26 
36 class Extract : public Analyzer {
37 
38  public:
39 
40  Extract(const ParameterMap& params);
41  virtual ~Extract() {};
42 
43  Transformation analyze(const DataSet* data) const;
44 
45 
46  protected:
47  QMap<QString, QList<int> > _dims;
48 
49 };
50 
51 } // namespace gaia2
52 
53 #endif // GAIA_EXTRACT_H
Class containing all info pertaining to a specific transformation, ie: the name of the analyzer class...
Definition: transformation.h:41
This class represents a dataset and all related information.
Definition: dataset.h:91
Main Gaia namespace, which contains all the library functions.
Definition: addfield.cpp:22
The Extract analyzer allows you to extract only specific dimensions from any given number of descript...
Definition: extract.h:36
the Analyzer abstract base class.
Definition: analyzer.h:43
Definition: parameter.h:34