Skip to content

Commit 236de17

Browse files
committed
fix IPF writing order in EMHROSM
1 parent 09a1844 commit 236de17

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Source/EMOpenCLLib/program_mods/mod_HROSM.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -808,11 +808,11 @@ subroutine HROSM_(self, EMsoft, progname)
808808
! note the switch of x and y to get the same IPF map convention as DREAM.3D
809809
IPFmapfile = trim(EMsoft%generateFilePath('EMdatapathname'))//trim(osmnl%IPFmap)//'_IPFXmap.tiff'
810810
call IPF%set_IPFfilename(IPFmapfile)
811-
call IPF%set_sampleDir( (/ 0, 1, 0 /) )
811+
call IPF%set_sampleDir( (/ 1, 0, 0 /) )
812812
call IPF%updateIPFmap(EMsoft, progname, cluster%ipf_wd, cluster%ipf_ht, DIFT%DIDT%pgnum, IPFmapfile, qAR, sym)
813813
IPFmapfile = trim(EMsoft%generateFilePath('EMdatapathname'))//trim(osmnl%IPFmap)//'_IPFYmap.tiff'
814814
call IPF%set_IPFfilename(IPFmapfile)
815-
call IPF%set_sampleDir( (/ 1, 0, 0 /) )
815+
call IPF%set_sampleDir( (/ 0, 1, 0 /) )
816816
call IPF%updateIPFmap(EMsoft, progname, cluster%ipf_wd, cluster%ipf_ht, DIFT%DIDT%pgnum, IPFmapfile, qAR, sym)
817817
IPFmapfile = trim(EMsoft%generateFilePath('EMdatapathname'))//trim(osmnl%IPFmap)//'_IPFZmap.tiff'
818818
call IPF%set_IPFfilename(IPFmapfile)

0 commit comments

Comments
 (0)