Skip to content

Commit f5bb010

Browse files
committed
2 parents 2f2a48a + cb7cb25 commit f5bb010

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Diff for: src/uti_phgrm/CPP_BasicEpip.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ cAppliEpiBasic::cAppliEpiBasic(int argc,char ** argv,bool aModeTestDeep) :
121121
mRatioInc (0.1),
122122
mNbProc (aModeTestDeep ? 1 : NbProcSys() ),
123123
mFileExp ("PxBasic.tif"),
124-
mPyr ("Pyr")
124+
mPyr ("Pyr/")
125125
{
126126
MMD_InitArgcArgv(argc,argv,2);
127127

Diff for: src/uti_phgrm/SAT4GEO/SAT4GEO.h

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ class cCommonAppliSat3D
9595
/* Pairs param */
9696
std::string mFilePairs;
9797
std::string mFPairsDirMEC;
98+
Pt2dr mBtoHLim;
9899

99100
/* Epip param */
100101
bool mDoIm;

Diff for: src/uti_phgrm/SAT4GEO/cSAT4GEO.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ cCommonAppliSat3D::cCommonAppliSat3D() :
4949
mNbProc(8),
5050
mFilePairs("Pairs.xml"),
5151
mFPairsDirMEC("PairsDirMEC.xml"),
52+
mBtoHLim (Pt2dr(0.01,0.3)),
5253
mDoIm(true),
5354
mOutRPC("EpiRPC"),
5455
mDegreRPC(0),
@@ -72,7 +73,8 @@ cCommonAppliSat3D::cCommonAppliSat3D() :
7273
<< EAM(mExe,"Exe",true,"Execute all, Def=true")
7374
<< EAM(mNbProc,"NbP",true,"Num of parallel processes, Def=8")
7475
<< EAM(mFilePairs,"Pairs",true,"File with overlapping pairs, Def=Pairs.xml")
75-
<< EAM(mFPairsDirMEC,"PairsDirMEC",true,"File with DirMECc of overlapping pairs, Def=PairsDirMEC.xml");
76+
<< EAM(mFPairsDirMEC,"PairsDirMEC",true,"File with DirMECc of overlapping pairs, Def=PairsDirMEC.xml")
77+
<< EAM(mBtoHLim,"BH",true,"Base to height ratio limits, def=[0.01,0.3]");
7678

7779

7880
*mArgEpip
@@ -154,6 +156,7 @@ std::string cCommonAppliSat3D::ComParamPairs()
154156
std::string aCom;
155157
aCom += aCom + " Out=" + mFilePairs;
156158
aCom += " PairsDirMEC=" + mFPairsDirMEC;
159+
aCom += " BH=" + ToString(mBtoHLim);
157160

158161
return aCom;
159162
}

0 commit comments

Comments
 (0)