[root]/CCA/Components/OnTheFlyAnalysis
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 49 (100.0%) | 950 (100.0%) | 19.3 |
harman | 15 (30.6%) | 802 (84.4%) | 53.4 |
jas | 25 (51.0%) | 132 (13.9%) | 5.2 |
dav | 5 (10.2%) | 14 (1.5%) | 2.8 |
luitjens | 4 (8.2%) | 2 (0.2%) | 0.5 |
Migrated a few more function calls to the new patch interface.
Deleted the old patch interface.
Removed __New() from the new patch interface calls.
2 lines of code changed in 4 files:
Compiler warning fixes.
1 lines of code changed in 2 files:
Fixed memory leak.
0 lines of code changed in 2 files:
The user can now specifiy a variable with a material index beside the
default material. Example usage:
<material>Atmosphere</material>
<Variables>
<analyze label="press_CC" matl="0"/>
<analyze label="rho_CC"/>
<analyze label="temp_CC"/>
<analyze label="vel_CC" matl="1"/>
</Variables>
63 lines of code changed in 3 files:
M CCA/Components/OnTheFlyAnalysis/particleExtract.cc
- Fixed compiler warnings. Use "()" around portions of if statements
to make them more clear (make explicit order of evaluation).
- Added 'default' to switch statement to quiet compiler complaint that some
options were not handled.
M CCA/Components/ICE/CustomBCs/LODI2.cc
- Fixed compiler warnings. Use "()" around portions of if statements
to make them more clear (make explicit order of evaluation).
M CCA/Components/Arches/Properties.cc
- Indented and added "{}" around some if statements. Quiets compiler
warnings and makes code easier to follow.
M CCA/Components/Arches/MCRT/ArchesRMCRT/RMCRTRadiationModel.h
- Added "{}" around some if statements. Quiets compiler warnings and
makes code easier to follow.
M Core/Grid/Variables/constVariable.h
M Core/Grid/Variables/constVariableBase.h
- Make getBaseRep() const. This allows for making a vector of
constVariable pointers like this:
constCCVariable<int> testCC;
vector<const constCCVariable<int>*> vCCVars;
// Get the testCC variable.
new_dw->get( testCC, lb->partCountLabel, 0, patch, Ghost::None, 0 );
// Create an empty constCCVariable.
constCCVariable<int> * testCCp = scinew constCCVariable<int>();
// Copy the pointer to the data (testCC) into our new variable.
testCCp->copyPointer( testCC );
// Save the new variable in a vector for future use.
vCCVars.push_back( testCCp );
- Commented out duplicate(ish) copyPointer() that can't be used anyway
because the compiler complains that it is ambiguous with the other
version of copyPointer(). (The parameters Variable& and
VariableBase& can't be distinguished.)
11 lines of code changed in 2 files:
Mac/OSX linking fixes.
0 lines of code changed in 2 files:
only schedule doAnalysis if on the finest level
27 lines of code changed in 3 files:
-formating
-added bulletproofing
-added ability to extract Matrix3 variables
-Only extract particles that are above a user defined colorThreshold
86 lines of code changed in 2 files:
initial commit for on-the-fly analysis module particleExract.
- it basically works for int, double, Vectors variables
- needs to be further refined and tested
626 lines of code changed in 5 files:
Combined Core/Math, Core/Disclosure, and Core/Geometry into one
library (with respect to linking (at least for now)) in order to get
around the circular dependency problem we are having under OSX... (and
on any other machine where we need to build static libraries.) Had to
add Core/Math to the PSELIBS line of a number of sub.mk files.
Currently all the files are compiled into the Core/Math library (but
still exist in their original locations). I created dummy.cc files to
allow me to still create the Core/Disclosure and Core/Geometry
libraries (which are now basically empty) so that I didn't have to
update all the sub.mk files to remove these references. However, at
some point in the near future, this needs to be cleaned up.
M Core/Persistent/Persistent.cc
For some reason Persistent.cc was #including <Endian.cc> which caused
symbols to appear twice. I changed this to #include the .h file.
This shouldn't be an issue... and may have only shown up (now, instead
of years ago) because I don't have TEEM turned on right now (TEEM used
to be on by default). (With TEEM turned on, Persistent.cc uses nrrd.h
for endian stuff.)
M CCA/Components/Arches/MCRT/ArchesRMCRT/RMCRTRRSDStratified.cc
Replaced 100000000000000000 with DBL_MAX, so that compilations on 32
bit machines don't error out.
3 lines of code changed in 1 file:
Remove the Packages/Uintah/
120 lines of code changed in 22 files:
Remove the Packages/Uintah/
11 lines of code changed in 1 file: