Skip to content

Commit 2c9d899

Browse files
committed
Fixing potentially missing cube files for VMD plotting and push version
1 parent a04e2d8 commit 2c9d899

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Exckel.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
cabal-version: 1.12
22

3-
-- This file has been generated from package.yaml by hpack version 0.31.0.
3+
-- This file has been generated from package.yaml by hpack version 0.31.1.
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: af97ebc516c2e9c20a9bcc1dbb3d12f140587d0c0c4fb4c8ccc119e9e71e5bc1
7+
-- hash: 1c4becb67bc53fc4a7941e470b0252e87d570f6e423c314afd785743857bce95
88

99
name: Exckel
10-
version: 0.3.0.2
10+
version: 0.3.0.3
1111
description: Please see the README on GitHub at <https://github.com/githubuser/Exckel#readme>
1212
homepage: https://github.com/sheepforce/Exckel#readme
1313
bug-reports: https://github.com/sheepforce/Exckel/issues

package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Exckel
2-
version: 0.3.0.2
2+
version: 0.3.0.3
33
github: "sheepforce/Exckel"
44
license: GPL-3
55
author: "Phillip Seeber"

src/Exckel/CLI/CLI.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,6 +529,7 @@ doPlots fi = do
529529
Just VMD {} -> do
530530
-- Informations about the current settings
531531
logMessage "Orbital cubes to plot" $ show $ map takeFileName $ fiWithCubes ^. cubeFiles . orbCubes . _Just
532+
logMessage "Natural orbital cubes to plot" $ show $ map takeFileName $ fiWithCubes ^. cubeFiles . natOrbCubes . _Just
532533
logMessage "Hole density cubes to plot" $ show $ map takeFileName $ fiWithCubes ^. cubeFiles . holeCubes . _Just
533534
logMessage "Electron density cubes to plot" $ show $ map takeFileName $ fiWithCubes ^. cubeFiles . electronCubes . _Just
534535
logMessage "CDD cubes to plot" $ show $ map takeFileName $ fiWithCubes ^. cubeFiles . cddCubes . _Just
@@ -544,7 +545,7 @@ doPlots fi = do
544545
logMessage "Rendering resolution" $ show (unwrappedRenderer ^. cpRenderer . rResolution)
545546
logMessage "Rendering image format" $ show (unwrappedRenderer ^. cpRenderer . rImageFormat)
546547
logInfo "Calling VMD and Tachyon. See \"VMD.out\", \"VMD.err\", \"Tachyon.out\" and \"Tachyon.err\""
547-
CP.VMD.plotCubes fi
548+
CP.VMD.plotCubes fiWithCubes
548549
allImages <- findAllImages (fiWithCubes ^. outputPrefix)
549550
return allImages
550551
Nothing -> return $ fiWithCubes ^. imageFiles

0 commit comments

Comments
 (0)