mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-17 17:31:10 -06:00
Comment out unused function
This commit is contained in:
committed by
Matthias Berg
parent
419f31a1d9
commit
a1146cf748
@@ -342,7 +342,7 @@ void Loader::processCurrentlySelectedUploadData(const std::string& dictionaryStr
|
||||
|
||||
// void Loader::createVolumeDataItem(std::string absPath) {}
|
||||
|
||||
ghoul::Dictionary Loader::createTaskDictionaryForOneVolumeItem(std::string inputPath, std::string outputBasePath) {
|
||||
// ghoul::Dictionary Loader::createTaskDictionaryForOneVolumeItem(std::string inputPath, std::string outputBasePath) {
|
||||
|
||||
// defaults
|
||||
// const int dimensions[3] = {100, 100, 128};
|
||||
@@ -358,20 +358,20 @@ ghoul::Dictionary Loader::createTaskDictionaryForOneVolumeItem(std::string input
|
||||
// const std::string RawVolumeOutput = itemOutputFilePath + ".rawvolume";
|
||||
// const std::string DictionaryOutput = itemOutputFilePath + ".dictionary";
|
||||
|
||||
std::initializer_list<std::pair<std::string, ghoul::any>> list = {
|
||||
std::make_pair( "Type", "KameleonVolumeToRawTask" ),
|
||||
std::make_pair( "Input", inputPath ),
|
||||
std::make_pair( "Dimensions", _uploadedDataDimensions ),
|
||||
std::make_pair( "Variable", _uploadedDataVariable),
|
||||
std::make_pair( "FactorRSquared", _uploadedDataFactorRSquared ),
|
||||
std::make_pair( "LowerDomainBound", _uploadedDataLowerDomainBounds ),
|
||||
std::make_pair( "UpperDomainBound", _uploadedDataHigherDomainBounds ),
|
||||
std::make_pair( "RawVolumeOutput", RawVolumeOutput ),
|
||||
std::make_pair( "DictionaryOutput", DictionaryOutput)
|
||||
};
|
||||
// std::initializer_list<std::pair<std::string, ghoul::any>> list = {
|
||||
// std::make_pair( "Type", "KameleonVolumeToRawTask" ),
|
||||
// std::make_pair( "Input", inputPath ),
|
||||
// std::make_pair( "Dimensions", _uploadedDataDimensions ),
|
||||
// std::make_pair( "Variable", _uploadedDataVariable),
|
||||
// std::make_pair( "FactorRSquared", _uploadedDataFactorRSquared ),
|
||||
// std::make_pair( "LowerDomainBound", _uploadedDataLowerDomainBounds ),
|
||||
// std::make_pair( "UpperDomainBound", _uploadedDataHigherDomainBounds ),
|
||||
// std::make_pair( "RawVolumeOutput", RawVolumeOutput ),
|
||||
// std::make_pair( "DictionaryOutput", DictionaryOutput)
|
||||
// };
|
||||
|
||||
return ghoul::Dictionary(list);
|
||||
}
|
||||
// return ghoul::Dictionary(list);
|
||||
// }
|
||||
|
||||
// ghoul::Dictionary Loader::createVolumeItemDictionary(std::string dataDictionaryPath, std::string dataStatePath) {
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ class Loader : public PropertyOwner, public Operator {
|
||||
|
||||
void processCurrentlySelectedUploadData(const std::string& dictionaryString);
|
||||
|
||||
ghoul::Dictionary createTaskDictionaryForOneVolumeItem(std::string inputPath, std::string outputBasePath);
|
||||
// ghoul::Dictionary createTaskDictionaryForOneVolumeItem(std::string inputPath, std::string outputBasePath);
|
||||
|
||||
// Perfom tasks that create dictionaries and converts
|
||||
// .CDF formatted volume files into .rawvolume
|
||||
|
||||
Reference in New Issue
Block a user