~ubuntu-branches/debian/stretch/3depict/stretch

« back to all changes in this revision

Viewing changes to src/backend/filtertreeAnalyse.h

  • Committer: Package Import Robot
  • Author(s): D Haley
  • Date: 2015-05-01 23:59:48 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20150501235948-t38obogk535eg2h6
Tags: 0.0.18-1
Update to upstream 0.0.18

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *      filtertree.h - Filter tree topology and data propagation handling
3
 
 *      Copyright (C) 2013, D Haley 
 
3
 *      Copyright (C) 2015, D Haley 
4
4
 
5
5
 *      This program is free software: you can redistribute it and/or modify
6
6
 *      it under the terms of the GNU General Public License as published by
61
61
                // are being used with sampling.
62
62
                void spatialSampling(const FilterTree &f);
63
63
 
 
64
                //check to see if there is a filter who is biasing composition
64
65
                void compositionAltered(const FilterTree &f);
65
66
 
 
67
                //check to see if there is a filter that needs a particular parent
66
68
                void checkRequiredParent(const FilterTree &f);
 
69
                
 
70
                //check to see if there is a filter that needs unranged data to work,
 
71
                // but does not have it 
 
72
                void checkUnrangedData(const FilterTree &f);
67
73
        public:
68
74
                void analyse(const FilterTree &f);
69
75