- Timestamp:
- Aug 20, 2014, 1:06:47 PM (11 years ago)
- Children:
- d635829
- Parents:
- ce0ca4
- git-author:
- Frederik Heber <heber@…> (07/18/14 17:08:09)
- git-committer:
- Frederik Heber <heber@…> (08/20/14 13:06:47)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/FragmentationAction.cpp
rce0ca4 rf5fa48 42 42 #include "Fragmentation/Exporters/ExportGraph_ToFiles.hpp" 43 43 #include "Fragmentation/Exporters/ExportGraph_ToJobs.hpp" 44 #include "Fragmentation/Exporters/SaturatedFragment.hpp" 44 45 #include "Fragmentation/Fragmentation.hpp" 45 46 #include "Fragmentation/Graph.hpp" … … 261 262 } 262 263 264 // create global saturation positions map 265 SaturatedFragment::GlobalSaturationPositions_t globalsaturationpositions; 266 263 267 { 264 268 const enum HydrogenSaturation saturation = params.DoSaturation.get() ? DoSaturate : DontSaturate; … … 266 270 if (params.types.get().size() != 0) { 267 271 // store molecule's fragment to file 268 ExportGraph_ToFiles exporter(TotalGraph, treatment, saturation );272 ExportGraph_ToFiles exporter(TotalGraph, treatment, saturation, globalsaturationpositions); 269 273 exporter.setPrefix(params.prefix.get()); 270 274 exporter.setOutputTypes(params.types.get()); … … 272 276 } else { 273 277 // store molecule's fragment in FragmentJobQueue 274 ExportGraph_ToJobs exporter(TotalGraph, treatment, saturation );278 ExportGraph_ToJobs exporter(TotalGraph, treatment, saturation, globalsaturationpositions); 275 279 exporter.setLevel(params.level.get()); 276 280 exporter();
Note:
See TracChangeset
for help on using the changeset viewer.
