(svn r26166) -Fix: Scale flows only after mapping to avoid rounding errors.
This commit is contained in:
@@ -23,12 +23,25 @@
|
||||
*/
|
||||
class FlowMapper : public ComponentHandler {
|
||||
public:
|
||||
|
||||
/**
|
||||
* Create a flow mapper.
|
||||
* @param scale Whether the flow mapper should scale all flows to monthly
|
||||
* values. Only do that on the very last flow mapping.
|
||||
*/
|
||||
FlowMapper(bool scale) : scale(scale) {}
|
||||
virtual void Run(LinkGraphJob &job) const;
|
||||
|
||||
/**
|
||||
* Virtual destructor has to be defined because of virtual Run().
|
||||
*/
|
||||
virtual ~FlowMapper() {}
|
||||
private:
|
||||
|
||||
/**
|
||||
* Whether the flow mapper should scale all flows to monthly values.
|
||||
*/
|
||||
const bool scale;
|
||||
};
|
||||
|
||||
#endif /* FLOWMAPPER_H_ */
|
||||
|
Reference in New Issue
Block a user