Skip to content

Commit ae19d03

Browse files
committed
Merge branch 'master' of github.com:vincefn/objcryst into upstream-objcryst
* 'master' of github.com:vincefn/objcryst: Remove debug messages & update changelog
2 parents c45c6d7 + c36a34a commit ae19d03

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

ChangeLog.txt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
#### 2022.2 (XX 2022)
2+
NEW FEATURES
3+
* The macOS image is now a universal binary for Apple Silicon (ARM64)
4+
and X86_64 machines
5+
6+
IMPROVEMENTS
7+
* the list of HKL reflections will now be more automatically be re-generated
8+
when the spacegroup changes or the lattice parameters change by more than 0.5%
9+
110
#### 2022.1 (May 2022)
211
NEW FEATURES
312
* Add cylindrical absorption correction (mu*R)

ObjCryst/ObjCryst/PowderPattern.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,6 @@ void PowderPatternDiffraction::CalcPowderPattern() const
13261326
{
13271327
VFN_DEBUG_MESSAGE("PowderPatternDiffraction::CalcPowderPattern():"
13281328
"spacegroup has changed, re-generating HKL's",5)
1329-
cout<<"PowderPatternDiffraction::CalcPowderPattern(): spacegroup has changed, re-generating HKL's"<<endl;
13301329
this->GenHKLFullSpace();
13311330
}
13321331
else if((!this->IsBeingRefined()) && (this->GetCrystal().GetClockLatticePar()>mClockHKL))
@@ -1349,8 +1348,6 @@ void PowderPatternDiffraction::CalcPowderPattern() const
13491348
{
13501349
VFN_DEBUG_MESSAGE("PowderPatternDiffraction::CalcPowderPattern():"
13511350
"lattice parameters have changed by more than 0.5%, re-generating HKL's",5)
1352-
cout<<"PowderPatternDiffraction::CalcPowderPattern():"
1353-
"lattice parameters have changed by more than 0.5%, re-generating HKL's"<<endl;
13541351
this->GenHKLFullSpace();
13551352
}
13561353
}

0 commit comments

Comments
 (0)