[1/2] DWARF: look up DW_AT_declaration non-recursively

Message ID 20200724170953.4069948-2-gprocida@google.com
State Committed, archived
Headers
Series Fix determination of DIE declaration-only status |

Commit Message

Giuliano Procida July 24, 2020, 5:09 p.m. UTC
  Bug 26297: Possible misinterpretation of DW_AT_declaration via DW_AT_specification

The DWARF attribute DW_AT_declaration indicates that a DIE is
"declaration only". DWARF DIEs can be linked with DW_AT_specification
and DW_AT_abstract_origin attributes, effectively combining them. A
lone DW_AT_declaration in a chain of such DIEs should not render the
whole chain declaration only.

The function die_is_declaration_only currently traverses such links in
search of the attribute which precludes being able to check for the
attribute at each DIE in the chain and some DIEs are mistakenly
treated as declaration-only by the DWARF reader.

This commit changes die_is_declaration_only to examine the given DIE
only. It extends the die_flag_attribute function so that it can
perform a direct as well as a recursive attribute search. The function
die_die_attribute's 'look_thru_abstract_origin' argument is renamed to
'recursively' to match.

A following commit will change the DWARF reader to ensure it takes
note of the declaration-only status of all DIEs in a chain.

	* src/abg-dwarf-reader.cc (die_die_attribute): Rename
	'look_thru_abstract_origin' argument to 'recursively' and
	mention DW_AT_specification in its doc comment. Remove stale
	comment for non-existent argument. Simplify code with the help
	of the ternary operator.  (die_flag_attribute): Add
	recursively argument, defaulted to true. If this is false,
	look for attribute using dwarf_attr rather than
	dwarf_attr_integrate.  (die_is_declaration_only): Call
	die_flag_attribute specifying non-recursive attribute search.
	* tests/data/test-annotate/test15-pr18892.so.abi: Update
	tests. This is mostly the removal of unreachable parts of the type
	graph and type id renumbering.
	* tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi:
	Likewise.
	* tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi:
	Likewise.
	* tests/data/test-diff-dwarf-abixml/test0-pr19026-libvtkIOSQL-6.1.so.1-report-0.txt:
	Likewise.
	* tests/data/test-read-dwarf/test15-pr18892.so.abi: Likewise.
	* tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi:
	Likewise.
	* tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi:
	Likewise.
	* tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi:
	Likewise.

Signed-off-by: Giuliano Procida <gprocida@google.com>
---
 src/abg-dwarf-reader.cc                       |   53 +-
 .../data/test-annotate/test15-pr18892.so.abi  |  431 ----
 ...st18-pr19037-libvtkRenderingLIC-6.1.so.abi | 2064 +++++++++--------
 ...19-pr19023-libtcmalloc_and_profiler.so.abi |    4 +-
 ...-pr19026-libvtkIOSQL-6.1.so.1-report-0.txt |   32 +
 .../test-read-dwarf/test15-pr18892.so.abi     |  241 --
 ...st18-pr19037-libvtkRenderingLIC-6.1.so.abi | 2030 ++++++++--------
 ...19-pr19023-libtcmalloc_and_profiler.so.abi |    2 +-
 .../test22-pr19097-libstdc++.so.6.0.17.so.abi |   88 +-
 9 files changed, 2155 insertions(+), 2790 deletions(-)
  

Comments

Dodji Seketeli Aug. 6, 2020, 4:43 p.m. UTC | #1
Giuliano Procida <gprocida@google.com> a écrit:

> Bug 26297: Possible misinterpretation of DW_AT_declaration via DW_AT_specification
>
> The DWARF attribute DW_AT_declaration indicates that a DIE is
> "declaration only". DWARF DIEs can be linked with DW_AT_specification
> and DW_AT_abstract_origin attributes, effectively combining them. A
> lone DW_AT_declaration in a chain of such DIEs should not render the
> whole chain declaration only.

Thank you for looking into this.

I kept meaning to look into that for a long time now and here you are

\o/

And yes, I think that several DW_AT_declaration a chain of DIEs linked by
DW_AT_{specification, abstract_origin} attributes should shouldn't turn a
definition DIE into a declaration-only one.

[...]

> 	* src/abg-dwarf-reader.cc (die_die_attribute): Rename
> 	'look_thru_abstract_origin' argument to 'recursively' and
> 	mention DW_AT_specification in its doc comment. Remove stale
> 	comment for non-existent argument. Simplify code with the help
> 	of the ternary operator.  (die_flag_attribute): Add
> 	recursively argument, defaulted to true. If this is false,
> 	look for attribute using dwarf_attr rather than
> 	dwarf_attr_integrate.  (die_is_declaration_only): Call
> 	die_flag_attribute specifying non-recursive attribute search.
> 	* tests/data/test-annotate/test15-pr18892.so.abi: Update
> 	tests. This is mostly the removal of unreachable parts of the type
> 	graph and type id renumbering.
> 	* tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi:
> 	Likewise.
> 	* tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi:
> 	Likewise.
> 	* tests/data/test-diff-dwarf-abixml/test0-pr19026-libvtkIOSQL-6.1.so.1-report-0.txt:
> 	Likewise.
> 	* tests/data/test-read-dwarf/test15-pr18892.so.abi: Likewise.
> 	* tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi:
> 	Likewise.
> 	* tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi:
> 	Likewise.
> 	* tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi:
> 	Likewise.
>
> Signed-off-by: Giuliano Procida <gprocida@google.com>

Applied to master, thanks!

Cheers,
  

Patch

diff --git a/src/abg-dwarf-reader.cc b/src/abg-dwarf-reader.cc
index 54a5edd3..66705882 100644
--- a/src/abg-dwarf-reader.cc
+++ b/src/abg-dwarf-reader.cc
@@ -429,7 +429,7 @@  static bool
 die_die_attribute(const Dwarf_Die* die,
 		  unsigned attr_name,
 		  Dwarf_Die& result,
-		  bool look_thru_abstract_origin = true);
+		  bool recursively = true);
 
 static string
 get_internal_anonymous_die_prefix_name(const Dwarf_Die *die);
@@ -8284,15 +8284,27 @@  die_attribute_has_no_signedness(const Dwarf_Die *die, unsigned attr_name)
 /// @param flag the output parameter to store the flag value into.
 /// This is set iff the function returns true.
 ///
+/// @param recursively if true, the function looks through the
+/// possible DW_AT_specification and DW_AT_abstract_origin attribute
+/// all the way down to the initial DIE that is cloned and look on
+/// that DIE to see if it has the @p attr_name attribute.
+///
 /// @return true if the DIE has a flag attribute named @p attr_name,
 /// false otherwise.
 static bool
-die_flag_attribute(Dwarf_Die* die, unsigned attr_name, bool& flag)
+die_flag_attribute(Dwarf_Die* die,
+		   unsigned attr_name,
+		   bool& flag,
+		   bool recursively = true)
 {
   Dwarf_Attribute attr;
+  if (recursively
+      ? !dwarf_attr_integrate(die, attr_name, &attr)
+      : !dwarf_attr(die, attr_name, &attr))
+    return false;
+
   bool f = false;
-  if (!dwarf_attr_integrate(die, attr_name, &attr)
-      || dwarf_formflag(&attr, &f))
+  if (dwarf_formflag(&attr, &f))
     return false;
 
   flag = f;
@@ -8343,18 +8355,15 @@  die_decl_file_attribute(const Dwarf_Die* die)
 ///
 /// @param die the DIE to read the value from.
 ///
-/// @param die_is_in_alt_di true if @p die comes from alternate debug
-/// info sections.
-///
 /// @param attr_name the DW_AT_* attribute name to read.
 ///
 /// @param result the DIE resulting from reading the attribute value.
 /// This is set iff the function returns true.
 ///
-/// @param look_thru_abstract_origin if yes, the function looks
-/// through the possible DW_AT_abstract_origin attribute all the way
-/// down to the initial DIE that is cloned and look on that DIE to see
-/// if it has the @p attr_name attribute.
+/// @param recursively if true, the function looks through the
+/// possible DW_AT_specification and DW_AT_abstract_origin attribute
+/// all the way down to the initial DIE that is cloned and look on
+/// that DIE to see if it has the @p attr_name attribute.
 ///
 /// @return true if the DIE @p die contains an attribute named @p
 /// attr_name that is a DIE reference, false otherwise.
@@ -8362,21 +8371,15 @@  static bool
 die_die_attribute(const Dwarf_Die* die,
 		  unsigned attr_name,
 		  Dwarf_Die& result,
-		  bool look_thru_abstract_origin)
+		  bool recursively)
 {
   Dwarf_Attribute attr;
-  if (look_thru_abstract_origin)
-    {
-      if (!dwarf_attr_integrate(const_cast<Dwarf_Die*>(die), attr_name, &attr))
-	return false;
-    }
-  else
-    {
-      if (!dwarf_attr(const_cast<Dwarf_Die*>(die), attr_name, &attr))
-	return false;
-    }
-  bool r = dwarf_formref_die(&attr, &result);
-  return r;
+  if (recursively
+      ? !dwarf_attr_integrate(const_cast<Dwarf_Die*>(die), attr_name, &attr)
+      : !dwarf_attr(const_cast<Dwarf_Die*>(die), attr_name, &attr))
+    return false;
+
+  return dwarf_formref_die(&attr, &result);
 }
 
 /// Read and return a DW_FORM_addr attribute from a given DIE.
@@ -8559,7 +8562,7 @@  static bool
 die_is_declaration_only(Dwarf_Die* die)
 {
   bool is_declaration_only = false;
-  die_flag_attribute(die, DW_AT_declaration, is_declaration_only);
+  die_flag_attribute(die, DW_AT_declaration, is_declaration_only, false);
   return is_declaration_only;
 }
 
diff --git a/tests/data/test-annotate/test15-pr18892.so.abi b/tests/data/test-annotate/test15-pr18892.so.abi
index 2fb415c2..15947e6f 100644
--- a/tests/data/test-annotate/test15-pr18892.so.abi
+++ b/tests/data/test-annotate/test15-pr18892.so.abi
@@ -4298,13 +4298,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <!-- void __sanitizer::RawWrite(const char*) -->
-      <function-decl name='RawWrite' mangled-name='_ZN11__sanitizer8RawWriteEPKc' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
     <!-- void (__sanitizer::uptr, __sanitizer::uptr) -->
     <function-type size-in-bits='64' id='type-id-80'>
@@ -4763,13 +4756,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <!-- void __sanitizer::ReportErrorSummary(const char*) -->
-      <function-decl name='ReportErrorSummary' mangled-name='_ZN11__sanitizer18ReportErrorSummaryEPKc' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.cc' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
       <!-- const char* __sanitizer::SanitizerToolName -->
       <var-decl name='SanitizerToolName' type-id='type-id-2' mangled-name='_ZN11__sanitizer17SanitizerToolNameE' visibility='default' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.cc' line='20' column='1'/>
       <!-- __sanitizer::fd_t __sanitizer::report_fd -->
@@ -5346,17 +5332,6 @@ 
         <!-- bool -->
         <return type-id='type-id-116'/>
       </function-decl>
-      <!-- int __sanitizer::internal_memcmp(void*, void*, __sanitizer::uptr) -->
-      <function-decl name='internal_memcmp' mangled-name='_ZN11__sanitizer15internal_memcmpEPKvS1_m' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.cc' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'void*' -->
-        <parameter type-id='type-id-1' name='s1' filepath='../../.././libsanitizer/tsan/tsan_interceptors.cc' line='633' column='1'/>
-        <!-- parameter of type 'void*' -->
-        <parameter type-id='type-id-1' name='s2' filepath='../../.././libsanitizer/tsan/tsan_interceptors.cc' line='633' column='1'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83' name='n' filepath='../../.././libsanitizer/tsan/tsan_interceptors.cc' line='633' column='1'/>
-        <!-- int -->
-        <return type-id='type-id-5'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/sanitizer_common/sanitizer_libignore.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/sanitizer_common' language='LANG_C_plus_plus'>
@@ -6081,88 +6056,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_open(const char*, int) -->
-      <function-decl name='internal_open' mangled-name='_ZN11__sanitizer13internal_openEPKci' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='95' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_open(const char*, int, __sanitizer::u32) -->
-      <function-decl name='internal_open' mangled-name='_ZN11__sanitizer13internal_openEPKcij' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- parameter of type 'typedef __sanitizer::u32' -->
-        <parameter type-id='type-id-170'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_stat(const char*, void*) -->
-      <function-decl name='internal_stat' mangled-name='_ZN11__sanitizer13internal_statEPKcPv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- parameter of type 'void*' -->
-        <parameter type-id='type-id-1'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_fstat(__sanitizer::fd_t, void*) -->
-      <function-decl name='internal_fstat' mangled-name='_ZN11__sanitizer14internal_fstatEiPv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'typedef __sanitizer::fd_t' -->
-        <parameter type-id='type-id-118'/>
-        <!-- parameter of type 'void*' -->
-        <parameter type-id='type-id-1'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_readlink(const char*, char*, __sanitizer::uptr) -->
-      <function-decl name='internal_readlink' mangled-name='_ZN11__sanitizer17internal_readlinkEPKcPcm' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- parameter of type 'char*' -->
-        <parameter type-id='type-id-25'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_execve(const char*, char* const*, char* const*) -->
-      <function-decl name='internal_execve' mangled-name='_ZN11__sanitizer15internal_execveEPKcPKPcS4_' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='201' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- parameter of type 'char* const*' -->
-        <parameter type-id='type-id-160'/>
-        <!-- parameter of type 'char* const*' -->
-        <parameter type-id='type-id-160'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_getdents(__sanitizer::fd_t, __sanitizer::linux_dirent*, unsigned int) -->
-      <function-decl name='internal_getdents' mangled-name='_ZN11__sanitizer17internal_getdentsEiPNS_12linux_direntEj' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='590' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'typedef __sanitizer::fd_t' -->
-        <parameter type-id='type-id-118'/>
-        <!-- parameter of type '__sanitizer::linux_dirent*' -->
-        <parameter type-id='type-id-158'/>
-        <!-- parameter of type 'unsigned int' -->
-        <parameter type-id='type-id-129'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_lseek(__sanitizer::fd_t, __sanitizer::OFF_T, int) -->
-      <function-decl name='internal_lseek' mangled-name='_ZN11__sanitizer14internal_lseekEiyi' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='594' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'typedef __sanitizer::fd_t' -->
-        <parameter type-id='type-id-118'/>
-        <!-- parameter of type 'typedef __sanitizer::OFF_T' -->
-        <parameter type-id='type-id-171'/>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
     </namespace-decl>
     <!-- void (int, void*, void*) -->
     <function-type size-in-bits='64' id='type-id-166'>
@@ -6325,23 +6218,6 @@ 
         <!-- typedef __sanitizer::uptr -->
         <return type-id='type-id-83'/>
       </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::Unwind_GetIP(_Unwind_Context*) -->
-      <function-decl name='Unwind_GetIP' mangled-name='_ZN11__sanitizer12Unwind_GetIPEP15_Unwind_Context' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux_libcdep.cc' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '_Unwind_Context*' -->
-        <parameter type-id='type-id-192'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::GetTlsSize() -->
-      <function-decl name='GetTlsSize' mangled-name='_ZN11__sanitizer10GetTlsSizeEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux_libcdep.cc' line='204' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::ThreadSelf() -->
-      <function-decl name='ThreadSelf' mangled-name='_ZN11__sanitizer10ThreadSelfEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux_libcdep.cc' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
     </namespace-decl>
     <!-- _Unwind_Ptr _Unwind_GetIP(_Unwind_Context*) -->
     <function-decl name='_Unwind_GetIP' filepath='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/host-x86_64-unknown-linux-gnu/gcc/include/unwind.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -8072,11 +7948,6 @@ 
         <!-- void -->
         <return type-id='type-id-26'/>
       </function-decl>
-      <!-- __sanitizer::StackDepotStats* __sanitizer::StackDepotGetStats() -->
-      <function-decl name='StackDepotGetStats' mangled-name='_ZN11__sanitizer18StackDepotGetStatsEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_stackdepot.cc' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- __sanitizer::StackDepotStats* -->
-        <return type-id='type-id-221'/>
-      </function-decl>
     </namespace-decl>
     <!-- bool (const __sanitizer::StackDepotReverseMap::IdDescPair&, const __sanitizer::StackDepotReverseMap::IdDescPair&) -->
     <function-type size-in-bits='64' id='type-id-224'>
@@ -8322,15 +8193,6 @@ 
         <!-- bool -->
         <return type-id='type-id-116'/>
       </function-decl>
-      <!-- bool __sanitizer::TemplateMatch(char*, const char*) -->
-      <function-decl name='TemplateMatch' mangled-name='_ZN11__sanitizer13TemplateMatchEPcPKc' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_suppressions.cc' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'char*' -->
-        <parameter type-id='type-id-25'/>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- bool -->
-        <return type-id='type-id-116'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/sanitizer_common/sanitizer_symbolizer.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/sanitizer_common' language='LANG_C_plus_plus'>
@@ -9007,17 +8869,6 @@ 
       </function-decl>
       <!-- typedef long long unsigned int __sanitizer::u64 -->
       <typedef-decl name='u64' type-id='type-id-136' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_internal_defs.h' line='69' column='1' id='type-id-173'/>
-      <!-- void* __sanitizer::internal_memcpy(void*, void*, __sanitizer::uptr) -->
-      <function-decl name='internal_memcpy' mangled-name='_ZN11__sanitizer15internal_memcpyEPvPKvm' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'void*' -->
-        <parameter type-id='type-id-1'/>
-        <!-- parameter of type 'void*' -->
-        <parameter type-id='type-id-1'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- void* -->
-        <return type-id='type-id-1'/>
-      </function-decl>
     </namespace-decl>
     <!-- namespace __tsan -->
     <namespace-decl name='__tsan'>
@@ -9394,28 +9245,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <!-- void __tsan::build_consistency_release() -->
-      <function-decl name='build_consistency_release' mangled-name='_ZN6__tsan25build_consistency_releaseEv' filepath='../../.././libsanitizer/tsan/tsan_defs.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <!-- void __tsan::build_consistency_nostats() -->
-      <function-decl name='build_consistency_nostats' mangled-name='_ZN6__tsan25build_consistency_nostatsEv' filepath='../../.././libsanitizer/tsan/tsan_defs.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <!-- void __tsan::build_consistency_shadow8() -->
-      <function-decl name='build_consistency_shadow8' mangled-name='_ZN6__tsan25build_consistency_shadow8Ev' filepath='../../.././libsanitizer/tsan/tsan_defs.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <!-- void __tsan::internal_free(void*) -->
-      <function-decl name='internal_free' mangled-name='_ZN6__tsan13internal_freeEPv' filepath='../../.././libsanitizer/tsan/tsan_mman.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'void*' -->
-        <parameter type-id='type-id-1'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_fd.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -12294,25 +12123,6 @@ 
       <typedef-decl name='OFF64_T' type-id='type-id-173' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_internal_defs.h' line='85' column='1' id='type-id-379'/>
       <!-- typedef __sanitizer::u64 __sanitizer::OFF_T -->
       <typedef-decl name='OFF_T' type-id='type-id-173' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_internal_defs.h' line='81' column='1' id='type-id-171'/>
-      <!-- void* __sanitizer::AllocatorReturnNull() -->
-      <function-decl name='AllocatorReturnNull' mangled-name='_ZN11__sanitizer19AllocatorReturnNullEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_allocator.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- void* -->
-        <return type-id='type-id-1'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::GetPageSizeCached() -->
-      <function-decl name='GetPageSizeCached' mangled-name='_ZN11__sanitizer17GetPageSizeCachedEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- char* __sanitizer::internal_strchr(const char*, int) -->
-      <function-decl name='internal_strchr' mangled-name='_ZN11__sanitizer15internal_strchrEPKci' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- char* -->
-        <return type-id='type-id-25'/>
-      </function-decl>
     </namespace-decl>
     <!-- namespace __tsan -->
     <namespace-decl name='__tsan'>
@@ -12708,30 +12518,6 @@ 
           <var-decl name='ctx' type-id='type-id-350' visibility='default' filepath='../../.././libsanitizer/tsan/tsan_interceptors.cc' line='118' column='1'/>
         </data-member>
       </class-decl>
-      <!-- void* __tsan::user_alloc(__tsan::ThreadState*, __sanitizer::uptr, __sanitizer::uptr, __sanitizer::uptr) -->
-      <function-decl name='user_alloc' mangled-name='_ZN6__tsan10user_allocEPNS_11ThreadStateEmmm' filepath='../../.././libsanitizer/tsan/tsan_mman.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '__tsan::ThreadState*' -->
-        <parameter type-id='type-id-348'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- void* -->
-        <return type-id='type-id-1'/>
-      </function-decl>
-      <!-- void __tsan::FdClose(__tsan::ThreadState*, __sanitizer::uptr, int) -->
-      <function-decl name='FdClose' mangled-name='_ZN6__tsan7FdCloseEPNS_11ThreadStateEmi' filepath='../../.././libsanitizer/tsan/tsan_fd.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '__tsan::ThreadState*' -->
-        <parameter type-id='type-id-348'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
     <!-- namespace std -->
     <namespace-decl name='std'>
@@ -32681,66 +32467,6 @@ 
         <!-- __tsan::Flags* -->
         <return type-id='type-id-309'/>
       </function-decl>
-      <!-- __tsan::Context* __tsan::CTX() -->
-      <function-decl name='CTX' mangled-name='_ZN6__tsan3CTXEv' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='469' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- __tsan::Context* -->
-        <return type-id='type-id-1207'/>
-      </function-decl>
-      <!-- void __tsan::MemoryAccess(__tsan::ThreadState*, __sanitizer::uptr, __sanitizer::uptr, int, bool, bool) -->
-      <function-decl name='MemoryAccess' mangled-name='_ZN6__tsan12MemoryAccessEPNS_11ThreadStateEmmibb' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='647' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '__tsan::ThreadState*' -->
-        <parameter type-id='type-id-348'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- parameter of type 'bool' -->
-        <parameter type-id='type-id-116'/>
-        <!-- parameter of type 'bool' -->
-        <parameter type-id='type-id-116'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <!-- void __tsan::FuncEntry(__tsan::ThreadState*, __sanitizer::uptr) -->
-      <function-decl name='FuncEntry' mangled-name='_ZN6__tsan9FuncEntryEPNS_11ThreadStateEm' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='693' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '__tsan::ThreadState*' -->
-        <parameter type-id='type-id-348'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <!-- void __tsan::FuncExit(__tsan::ThreadState*) -->
-      <function-decl name='FuncExit' mangled-name='_ZN6__tsan8FuncExitEPNS_11ThreadStateE' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='694' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '__tsan::ThreadState*' -->
-        <parameter type-id='type-id-348'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <!-- void __tsan::AcquireImpl(__tsan::ThreadState*, __sanitizer::uptr, __tsan::SyncClock*) -->
-      <function-decl name='AcquireImpl' mangled-name='_ZN6__tsan11AcquireImplEPNS_11ThreadStateEmPNS_9SyncClockE' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='722' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '__tsan::ThreadState*' -->
-        <parameter type-id='type-id-348'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type '__tsan::SyncClock*' -->
-        <parameter type-id='type-id-285'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <!-- void __tsan::ReleaseImpl(__tsan::ThreadState*, __sanitizer::uptr, __tsan::SyncClock*) -->
-      <function-decl name='ReleaseImpl' mangled-name='_ZN6__tsan11ReleaseImplEPNS_11ThreadStateEmPNS_9SyncClockE' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='723' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '__tsan::ThreadState*' -->
-        <parameter type-id='type-id-348'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type '__tsan::SyncClock*' -->
-        <parameter type-id='type-id-285'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
     <!-- a8 __tsan_atomic8_load(const volatile a8*, morder) -->
     <function-decl name='__tsan_atomic8_load' mangled-name='__tsan_atomic8_load' filepath='../../.././libsanitizer/tsan/tsan_interface_atomic.cc' line='393' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='__tsan_atomic8_load'>
@@ -33782,13 +33508,6 @@ 
         <!-- struct __tsan::MD5Hash -->
         <return type-id='type-id-1250'/>
       </function-decl>
-      <!-- void __tsan::MD5_Init(__tsan::__anonymous_struct__*) -->
-      <function-decl name='MD5_Init' mangled-name='_ZN6__tsan8MD5_InitEPNS_7MD5_CTXE' filepath='../../.././libsanitizer/tsan/tsan_md5.cc' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '__tsan::__anonymous_struct__*' -->
-        <parameter type-id='type-id-1499'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_mman.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -35046,11 +34765,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <!-- __sanitizer::InternalAllocator* __sanitizer::internal_allocator() -->
-      <function-decl name='internal_allocator' mangled-name='_ZN11__sanitizer18internal_allocatorEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_allocator_internal.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- __sanitizer::InternalAllocator* -->
-        <return type-id='type-id-1516'/>
-      </function-decl>
     </namespace-decl>
     <!-- namespace __tsan -->
     <namespace-decl name='__tsan'>
@@ -35101,11 +34815,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <!-- __tsan::Allocator* __tsan::allocator() -->
-      <function-decl name='allocator' mangled-name='_ZN6__tsan9allocatorEv' filepath='../../.././libsanitizer/tsan/tsan_mman.cc' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- __tsan::Allocator* -->
-        <return type-id='type-id-1525'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_mutex.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -35231,11 +34940,6 @@ 
         <!-- typedef __sanitizer::uptr -->
         <return type-id='type-id-83'/>
       </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_sched_yield() -->
-      <function-decl name='internal_sched_yield' mangled-name='_ZN11__sanitizer20internal_sched_yieldEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
     </namespace-decl>
     <!-- namespace __tsan -->
     <namespace-decl name='__tsan'>
@@ -36254,19 +35958,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <!-- void __sanitizer::ReportErrorSummary(const char*, const char*, int, const char*) -->
-      <function-decl name='ReportErrorSummary' mangled-name='_ZN11__sanitizer18ReportErrorSummaryEPKcS1_iS1_' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
     <!-- namespace __tsan -->
     <namespace-decl name='__tsan'>
@@ -37589,22 +37280,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <!-- const char* __tsan::thread_name(char*, int) -->
-      <function-decl name='thread_name' mangled-name='_ZN6__tsan11thread_nameEPci' filepath='../../.././libsanitizer/tsan/tsan_report.cc' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'char*' -->
-        <parameter type-id='type-id-25'/>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- const char* -->
-        <return type-id='type-id-2'/>
-      </function-decl>
-      <!-- bool __tsan::FrameIsInternal(const __tsan::ReportStack*) -->
-      <function-decl name='FrameIsInternal' mangled-name='_ZN6__tsan15FrameIsInternalEPKNS_11ReportStackE' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='620' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const __tsan::ReportStack*' -->
-        <parameter type-id='type-id-1635'/>
-        <!-- bool -->
-        <return type-id='type-id-116'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_rtl.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -37980,22 +37655,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_strlen(const char*) -->
-      <function-decl name='internal_strlen' mangled-name='_ZN11__sanitizer15internal_strlenEPKc' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'const char*' -->
-        <parameter type-id='type-id-2'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- bool __sanitizer::internal_iserror(__sanitizer::uptr, int*) -->
-      <function-decl name='internal_iserror' mangled-name='_ZN11__sanitizer16internal_iserrorEmPi' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type 'int*' -->
-        <parameter type-id='type-id-30'/>
-        <!-- bool -->
-        <return type-id='type-id-116'/>
-      </function-decl>
     </namespace-decl>
     <!-- namespace __tsan -->
     <namespace-decl name='__tsan'>
@@ -38249,34 +37908,6 @@ 
         <!-- void -->
         <return type-id='type-id-26'/>
       </function-decl>
-      <!-- void __tsan::MapThreadTrace(__sanitizer::uptr, __sanitizer::uptr) -->
-      <function-decl name='MapThreadTrace' mangled-name='_ZN6__tsan14MapThreadTraceEmm' filepath='../../.././libsanitizer/tsan/tsan_rtl.cc' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <!-- void __tsan::MemoryAccessImpl(__tsan::ThreadState*, __sanitizer::uptr, int, bool, bool, __sanitizer::u64*, __tsan::Shadow) -->
-      <function-decl name='MemoryAccessImpl' mangled-name='_ZN6__tsan16MemoryAccessImplEPNS_11ThreadStateEmibbPyNS_6ShadowE' filepath='../../.././libsanitizer/tsan/tsan_rtl.cc' line='416' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '__tsan::ThreadState*' -->
-        <parameter type-id='type-id-348'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- parameter of type 'bool' -->
-        <parameter type-id='type-id-116'/>
-        <!-- parameter of type 'bool' -->
-        <parameter type-id='type-id-116'/>
-        <!-- parameter of type '__sanitizer::u64*' -->
-        <parameter type-id='type-id-1337'/>
-        <!-- parameter of type 'class __tsan::Shadow' -->
-        <parameter type-id='type-id-1681'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
       <!-- char __tsan::cur_thread_placeholder[431104] -->
       <var-decl name='cur_thread_placeholder' type-id='type-id-1655' mangled-name='_ZN6__tsan22cur_thread_placeholderE' visibility='default' filepath='../../.././libsanitizer/tsan/tsan_rtl.cc' line='35' column='1'/>
     </namespace-decl>
@@ -38484,17 +38115,6 @@ 
         <!-- void -->
         <return type-id='type-id-26'/>
       </function-decl>
-      <!-- void __tsan::ReleaseStoreImpl(__tsan::ThreadState*, __sanitizer::uptr, __tsan::SyncClock*) -->
-      <function-decl name='ReleaseStoreImpl' mangled-name='_ZN6__tsan16ReleaseStoreImplEPNS_11ThreadStateEmPNS_9SyncClockE' filepath='../../.././libsanitizer/tsan/tsan_rtl_mutex.cc' line='327' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type '__tsan::ThreadState*' -->
-        <parameter type-id='type-id-348'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- parameter of type '__tsan::SyncClock*' -->
-        <parameter type-id='type-id-285'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_rtl_report.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -40021,23 +39641,6 @@ 
           <var-decl name='count' type-id='type-id-5' visibility='default' filepath='../../.././libsanitizer/tsan/tsan_rtl_thread.cc' line='142' column='1'/>
         </data-member>
       </class-decl>
-      <!-- __tsan::Trace* __tsan::ThreadTrace(int) -->
-      <function-decl name='ThreadTrace' mangled-name='_ZN6__tsan11ThreadTraceEi' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='752' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- __tsan::Trace* -->
-        <return type-id='type-id-1707'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __tsan::TraceSize() -->
-      <function-decl name='TraceSize' mangled-name='_ZN6__tsan9TraceSizeEv' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='750' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <!-- __sanitizer::uptr __tsan::TraceParts() -->
-      <function-decl name='TraceParts' mangled-name='_ZN6__tsan10TracePartsEv' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='751' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_stat.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -40096,13 +39699,6 @@ 
         <!-- const char* -->
         <return type-id='type-id-2'/>
       </function-decl>
-      <!-- __sanitizer::uptr __sanitizer::internal_close(__sanitizer::fd_t) -->
-      <function-decl name='internal_close' mangled-name='_ZN11__sanitizer14internal_closeEi' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'typedef __sanitizer::fd_t' -->
-        <parameter type-id='type-id-118'/>
-        <!-- typedef __sanitizer::uptr -->
-        <return type-id='type-id-83'/>
-      </function-decl>
     </namespace-decl>
     <!-- namespace __tsan -->
     <namespace-decl name='__tsan'>
@@ -40135,13 +39731,6 @@ 
         <!-- typedef __sanitizer::uptr -->
         <return type-id='type-id-83'/>
       </function-decl>
-      <!-- __sanitizer::SuppressionType __tsan::conv(__tsan::ReportType) -->
-      <function-decl name='conv' mangled-name='_ZN6__tsan4convENS_10ReportTypeE' filepath='../../.././libsanitizer/tsan/tsan_suppressions.cc' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'enum __tsan::ReportType' -->
-        <parameter type-id='type-id-1488'/>
-        <!-- enum __sanitizer::SuppressionType -->
-        <return type-id='type-id-1194'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_symbolize.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -40637,26 +40226,6 @@ 
           <var-decl name='size' type-id='type-id-83' visibility='default' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_symbolizer.h' line='61' column='1'/>
         </data-member>
       </class-decl>
-      <!-- void* __sanitizer::internal_memset(void*, int, __sanitizer::uptr) -->
-      <function-decl name='internal_memset' mangled-name='_ZN11__sanitizer15internal_memsetEPvim' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'void*' -->
-        <parameter type-id='type-id-1'/>
-        <!-- parameter of type 'int' -->
-        <parameter type-id='type-id-5'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- void* -->
-        <return type-id='type-id-1'/>
-      </function-decl>
-      <!-- void __sanitizer::UnmapOrDie(void*, __sanitizer::uptr) -->
-      <function-decl name='UnmapOrDie' mangled-name='_ZN11__sanitizer10UnmapOrDieEPvm' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <!-- parameter of type 'void*' -->
-        <parameter type-id='type-id-1'/>
-        <!-- parameter of type 'typedef __sanitizer::uptr' -->
-        <parameter type-id='type-id-83'/>
-        <!-- void -->
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
     <!-- namespace __tsan -->
     <namespace-decl name='__tsan'>
diff --git a/tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi b/tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
index 0af4ac26..3fa79582 100644
--- a/tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
+++ b/tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
@@ -2634,24 +2634,11 @@ 
         <var-decl name='__state' type-id='type-id-86' visibility='default' filepath='/usr/include/_G_config.h' line='30' column='1'/>
       </data-member>
     </class-decl>
-    <!-- typedef int (void*, void*)* __compar_fn_t -->
-    <typedef-decl name='__compar_fn_t' type-id='type-id-101' filepath='/usr/include/stdlib.h' line='742' column='1' id='type-id-102'/>
-    <!-- struct div_t -->
-    <class-decl name='div_t' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/include/stdlib.h' line='99' column='1' id='type-id-103'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <!-- int div_t::quot -->
-        <var-decl name='quot' type-id='type-id-17' visibility='default' filepath='/usr/include/stdlib.h' line='100' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='32'>
-        <!-- int div_t::rem -->
-        <var-decl name='rem' type-id='type-id-17' visibility='default' filepath='/usr/include/stdlib.h' line='101' column='1'/>
-      </data-member>
-    </class-decl>
     <!-- class vtkPixelTransfer -->
-    <class-decl name='vtkPixelTransfer' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.h' line='35' column='1' id='type-id-104'>
+    <class-decl name='vtkPixelTransfer' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.h' line='35' column='1' id='type-id-101'>
         <member-type access='private'>
           <!-- typedef double vtkPixelTransfer::VTK_TT -->
-          <typedef-decl name='VTK_TT' type-id='type-id-15' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.cxx' line='19' column='1' id='type-id-105'/>
+          <typedef-decl name='VTK_TT' type-id='type-id-15' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.cxx' line='19' column='1' id='type-id-102'/>
         </member-type>
       <member-function access='private' static='yes'>
         <!-- int vtkPixelTransfer::Blit(int, int, void*, int, void*) -->
@@ -2736,11 +2723,11 @@ 
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'vtkPixelTransfer::VTK_TT*' -->
-          <parameter type-id='type-id-106'/>
+          <parameter type-id='type-id-103'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'vtkPixelTransfer::VTK_TT*' -->
-          <parameter type-id='type-id-106'/>
+          <parameter type-id='type-id-103'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -2759,7 +2746,7 @@ 
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'vtkPixelTransfer::VTK_TT*' -->
-          <parameter type-id='type-id-106'/>
+          <parameter type-id='type-id-103'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'int' -->
@@ -2771,6 +2758,19 @@ 
         </function-decl>
       </member-function>
     </class-decl>
+    <!-- typedef int (void*, void*)* __compar_fn_t -->
+    <typedef-decl name='__compar_fn_t' type-id='type-id-104' filepath='/usr/include/stdlib.h' line='742' column='1' id='type-id-105'/>
+    <!-- struct div_t -->
+    <class-decl name='div_t' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/include/stdlib.h' line='99' column='1' id='type-id-106'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <!-- int div_t::quot -->
+        <var-decl name='quot' type-id='type-id-17' visibility='default' filepath='/usr/include/stdlib.h' line='100' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='32'>
+        <!-- int div_t::rem -->
+        <var-decl name='rem' type-id='type-id-17' visibility='default' filepath='/usr/include/stdlib.h' line='101' column='1'/>
+      </data-member>
+    </class-decl>
     <!-- struct ldiv_t -->
     <class-decl name='ldiv_t' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/stdlib.h' line='107' column='1' id='type-id-107'>
       <data-member access='public' layout-offset-in-bits='0'>
@@ -3305,7 +3305,7 @@ 
     <!-- fpos_t* -->
     <pointer-type-def type-id='type-id-100' size-in-bits='64' id='type-id-195'/>
     <!-- int (void*, void*)* -->
-    <pointer-type-def type-id='type-id-196' size-in-bits='64' id='type-id-101'/>
+    <pointer-type-def type-id='type-id-196' size-in-bits='64' id='type-id-104'/>
     <!-- int& -->
     <reference-type-def kind='lvalue' type-id='type-id-17' size-in-bits='64' id='type-id-51'/>
     <!-- int* -->
@@ -6951,7 +6951,7 @@ 
       <!-- parameter of type 'typedef size_t' -->
       <parameter type-id='type-id-37'/>
       <!-- parameter of type 'typedef __compar_fn_t' -->
-      <parameter type-id='type-id-102'/>
+      <parameter type-id='type-id-105'/>
       <!-- void* -->
       <return type-id='type-id-14'/>
     </function-decl>
@@ -6962,7 +6962,7 @@ 
       <!-- parameter of type 'int' -->
       <parameter type-id='type-id-17'/>
       <!-- struct div_t -->
-      <return type-id='type-id-103'/>
+      <return type-id='type-id-106'/>
     </function-decl>
     <!-- char* getenv(const char*) -->
     <function-decl name='getenv' filepath='/usr/include/stdlib.h' line='567' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7020,7 +7020,7 @@ 
       <!-- parameter of type 'typedef size_t' -->
       <parameter type-id='type-id-37'/>
       <!-- parameter of type 'typedef __compar_fn_t' -->
-      <parameter type-id='type-id-102'/>
+      <parameter type-id='type-id-105'/>
       <!-- void -->
       <return type-id='type-id-26'/>
     </function-decl>
@@ -14475,7 +14475,7 @@ 
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- vtkPixelTransfer::VTK_TT* -->
-    <pointer-type-def type-id='type-id-105' size-in-bits='64' id='type-id-106'/>
+    <pointer-type-def type-id='type-id-102' size-in-bits='64' id='type-id-103'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- class vtkStructuredGridLIC2D -->
@@ -15646,6 +15646,10 @@ 
     <reference-type-def kind='lvalue' type-id='type-id-271' size-in-bits='64' id='type-id-285'/>
     <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>* -->
     <pointer-type-def type-id='type-id-271' size-in-bits='64' id='type-id-283'/>
+    <!-- std::allocator<float>& -->
+    <qualified-type-def type-id='type-id-397' id='type-id-483'/>
+    <!-- std::allocator<vtkPixelExtent>& -->
+    <qualified-type-def type-id='type-id-210' id='type-id-484'/>
     <!-- vtkSurfaceLICComposite* -->
     <pointer-type-def type-id='type-id-471' size-in-bits='64' id='type-id-472'/>
     <!-- vtkTextureObject*& -->
@@ -16165,7 +16169,7 @@ 
         <return type-id='type-id-26'/>
       </function-decl>
       <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__uninitialized_copy_a<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent>(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::allocator<vtkPixelExtent>&) -->
-      <function-decl name='__uninitialized_copy_a&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, vtkPixelExtent&gt;' mangled-name='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E'>
+      <function-decl name='__uninitialized_copy_a&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, vtkPixelExtent&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
         <parameter type-id='type-id-145'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
@@ -16178,7 +16182,7 @@ 
         <return type-id='type-id-145'/>
       </function-decl>
       <!-- float* std::__uninitialized_move_a<float*, float*, std::allocator<float> >(float*, float*, float*, std::allocator<float>&) -->
-      <function-decl name='__uninitialized_move_a&lt;float*, float*, std::allocator&lt;float&gt; &gt;' mangled-name='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_'>
+      <function-decl name='__uninitialized_move_a&lt;float*, float*, std::allocator&lt;float&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'float*' -->
         <parameter type-id='type-id-59'/>
         <!-- parameter of type 'float*' -->
@@ -16334,7 +16338,7 @@ 
         <return type-id='type-id-46'/>
       </function-decl>
       <!-- struct std::__copy_move<false, false, std::random_access_iterator_tag> -->
-      <class-decl name='__copy_move&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='335' column='1' is-declaration-only='yes' id='type-id-483'>
+      <class-decl name='__copy_move&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='335' column='1' is-declaration-only='yes' id='type-id-485'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__copy_move<false, false, std::random_access_iterator_tag>::__copy_m<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
           <function-decl name='__copy_m&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16363,7 +16367,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__niter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false> -->
-      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' is-declaration-only='yes' id='type-id-484'>
+      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' is-declaration-only='yes' id='type-id-486'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__niter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ELb0EE3__bES4_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16375,7 +16379,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__niter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false> -->
-      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' is-declaration-only='yes' id='type-id-485'>
+      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' is-declaration-only='yes' id='type-id-487'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> std::__niter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseISt15_Deque_iteratorI14vtkPixelExtentRKS1_PS2_ELb0EE3__bES5_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16387,7 +16391,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__miter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false> -->
-      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-486'>
+      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-488'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> std::__miter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseISt15_Deque_iteratorI14vtkPixelExtentRKS1_PS2_ELb0EE3__bES5_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16399,7 +16403,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__iter_swap<true> -->
-      <class-decl name='__iter_swap&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='96' column='1' is-declaration-only='yes' id='type-id-487'>
+      <class-decl name='__iter_swap&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='96' column='1' is-declaration-only='yes' id='type-id-489'>
         <member-function access='public' static='yes'>
           <!-- void std::__iter_swap<true>::iter_swap<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
           <function-decl name='iter_swap&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16413,7 +16417,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__copy_move_backward<false, false, std::random_access_iterator_tag> -->
-      <class-decl name='__copy_move_backward&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='539' column='1' is-declaration-only='yes' id='type-id-488'>
+      <class-decl name='__copy_move_backward&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='539' column='1' is-declaration-only='yes' id='type-id-490'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__copy_move_backward<false, false, std::random_access_iterator_tag>::__copy_move_b<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
           <function-decl name='__copy_move_b&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='542' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16429,7 +16433,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__miter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false> -->
-      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-489'>
+      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-491'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__miter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ELb0EE3__bES4_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16441,7 +16445,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__uninitialized_copy<false> -->
-      <class-decl name='__uninitialized_copy&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='64' column='1' is-declaration-only='yes' id='type-id-490'>
+      <class-decl name='__uninitialized_copy&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='64' column='1' is-declaration-only='yes' id='type-id-492'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__uninitialized_copy<false>::uninitialized_copy<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
           <function-decl name='uninitialized_copy&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16483,7 +16487,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__miter_base<float*, false> -->
-      <class-decl name='__miter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-491'>
+      <class-decl name='__miter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-493'>
         <member-function access='public' static='yes'>
           <!-- float* std::__miter_base<float*, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseIPfLb0EE3__bES0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16495,7 +16499,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__uninitialized_copy<true> -->
-      <class-decl name='__uninitialized_copy&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='87' column='1' is-declaration-only='yes' id='type-id-492'>
+      <class-decl name='__uninitialized_copy&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='87' column='1' is-declaration-only='yes' id='type-id-494'>
         <member-function access='public' static='yes'>
           <!-- float* std::__uninitialized_copy<true>::uninitialized_copy<float*, float*>(float*, float*) -->
           <function-decl name='uninitialized_copy&lt;float*, float*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16510,6 +16514,32 @@ 
           </function-decl>
         </member-function>
       </class-decl>
+      <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__uninitialized_copy_a<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent>(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::allocator<vtkPixelExtent>&) -->
+      <function-decl name='__uninitialized_copy_a&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, vtkPixelExtent&gt;' mangled-name='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E'>
+        <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
+        <parameter type-id='type-id-145' name='__first' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1'/>
+        <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
+        <parameter type-id='type-id-145' name='__last' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1'/>
+        <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
+        <parameter type-id='type-id-145' name='__result' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='255' column='1'/>
+        <!-- parameter of type 'std::allocator<vtkPixelExtent>&' -->
+        <parameter type-id='type-id-484'/>
+        <!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
+        <return type-id='type-id-145'/>
+      </function-decl>
+      <!-- float* std::__uninitialized_move_a<float*, float*, std::allocator<float> >(float*, float*, float*, std::allocator<float>&) -->
+      <function-decl name='__uninitialized_move_a&lt;float*, float*, std::allocator&lt;float&gt; &gt;' mangled-name='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_'>
+        <!-- parameter of type 'float*' -->
+        <parameter type-id='type-id-59' name='__first' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1'/>
+        <!-- parameter of type 'float*' -->
+        <parameter type-id='type-id-59' name='__last' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1'/>
+        <!-- parameter of type 'float*' -->
+        <parameter type-id='type-id-59' name='__result' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
+        <!-- parameter of type 'std::allocator<float>&' -->
+        <parameter type-id='type-id-483' name='__alloc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
+        <!-- float* -->
+        <return type-id='type-id-59'/>
+      </function-decl>
     </namespace-decl>
     <!-- namespace __gnu_cxx -->
     <namespace-decl name='__gnu_cxx'>
@@ -16526,18 +16556,18 @@ 
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- class vtkSurfaceLICDefaultPainter -->
-    <class-decl name='vtkSurfaceLICDefaultPainter' size-in-bits='1728' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='37' column='1' id='type-id-493'>
+    <class-decl name='vtkSurfaceLICDefaultPainter' size-in-bits='1728' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='37' column='1' id='type-id-495'>
     <!-- class vtkDefaultPainter -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-494'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-496'/>
       <data-member access='protected' layout-offset-in-bits='1664'>
         <!-- vtkSurfaceLICPainter* vtkSurfaceLICDefaultPainter::SurfaceLICPainter -->
-        <var-decl name='SurfaceLICPainter' type-id='type-id-495' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='66' column='1'/>
+        <var-decl name='SurfaceLICPainter' type-id='type-id-497' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='66' column='1'/>
       </data-member>
       <member-function access='private' static='yes'>
         <!-- vtkSurfaceLICDefaultPainter* vtkSurfaceLICDefaultPainter::New() -->
         <function-decl name='New' mangled-name='_ZN27vtkSurfaceLICDefaultPainter3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='26' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter3NewEv'>
           <!-- vtkSurfaceLICDefaultPainter* -->
-          <return type-id='type-id-496'/>
+          <return type-id='type-id-498'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -16555,25 +16585,25 @@ 
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-66'/>
           <!-- vtkSurfaceLICDefaultPainter* -->
-          <return type-id='type-id-496'/>
+          <return type-id='type-id-498'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSurfaceLICDefaultPainter* vtkSurfaceLICDefaultPainter::NewInstance() -->
         <function-decl name='NewInstance' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter11NewInstanceEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- vtkSurfaceLICDefaultPainter* -->
-          <return type-id='type-id-496'/>
+          <return type-id='type-id-498'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSurfaceLICDefaultPainter::SetSurfaceLICPainter(vtkSurfaceLICPainter*) -->
         <function-decl name='SetSurfaceLICPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495'/>
+          <parameter type-id='type-id-497'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -16582,7 +16612,7 @@ 
         <!-- vtkSurfaceLICDefaultPainter::vtkSurfaceLICDefaultPainter() -->
         <function-decl name='vtkSurfaceLICDefaultPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainterC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainterC2Ev'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -16591,9 +16621,9 @@ 
         <!-- vtkSurfaceLICDefaultPainter::vtkSurfaceLICDefaultPainter(const vtkSurfaceLICDefaultPainter&) -->
         <function-decl name='vtkSurfaceLICDefaultPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSurfaceLICDefaultPainter&' -->
-          <parameter type-id='type-id-498'/>
+          <parameter type-id='type-id-500'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -16602,9 +16632,9 @@ 
         <!-- void vtkSurfaceLICDefaultPainter::operator=(const vtkSurfaceLICDefaultPainter&) -->
         <function-decl name='operator=' mangled-name='_ZN27vtkSurfaceLICDefaultPainteraSERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSurfaceLICDefaultPainter&' -->
-          <parameter type-id='type-id-498'/>
+          <parameter type-id='type-id-500'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -16613,7 +16643,7 @@ 
         <!-- vtkSurfaceLICDefaultPainter::~vtkSurfaceLICDefaultPainter(int) -->
         <function-decl name='~vtkSurfaceLICDefaultPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainterD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainterD1Ev'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- artificial parameter of type 'int' -->
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <!-- void -->
@@ -16624,7 +16654,7 @@ 
         <!-- const char* vtkSurfaceLICDefaultPainter::GetClassNameInternal() -->
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- const char* -->
           <return type-id='type-id-68'/>
         </function-decl>
@@ -16633,7 +16663,7 @@ 
         <!-- int vtkSurfaceLICDefaultPainter::IsA(const char*) -->
         <function-decl name='IsA' mangled-name='_ZN27vtkSurfaceLICDefaultPainter3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- int -->
@@ -16644,7 +16674,7 @@ 
         <!-- void vtkSurfaceLICDefaultPainter::PrintSelf(std::ostream&, vtkIndent) -->
         <function-decl name='PrintSelf' mangled-name='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- parameter of type 'std::ostream&' -->
           <parameter type-id='type-id-72'/>
           <!-- parameter of type 'class vtkIndent' -->
@@ -16657,9 +16687,9 @@ 
         <!-- void vtkSurfaceLICDefaultPainter::ReportReferences(vtkGarbageCollector*) -->
         <function-decl name='ReportReferences' mangled-name='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- parameter of type 'vtkGarbageCollector*' -->
-          <parameter type-id='type-id-499'/>
+          <parameter type-id='type-id-501'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -16668,7 +16698,7 @@ 
         <!-- vtkObjectBase* vtkSurfaceLICDefaultPainter::NewInstanceInternal() -->
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- vtkObjectBase* -->
           <return type-id='type-id-66'/>
         </function-decl>
@@ -16677,7 +16707,7 @@ 
         <!-- void vtkSurfaceLICDefaultPainter::UpdateBounds(double*) -->
         <function-decl name='UpdateBounds' mangled-name='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- void -->
@@ -16688,7 +16718,7 @@ 
         <!-- void vtkSurfaceLICDefaultPainter::BuildPainterChain() -->
         <function-decl name='BuildPainterChain' mangled-name='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='47' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -16697,14 +16727,14 @@ 
         <!-- vtkSurfaceLICPainter* vtkSurfaceLICDefaultPainter::GetSurfaceLICPainter() -->
         <function-decl name='GetSurfaceLICPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainter20GetSurfaceLICPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <!-- vtkSurfaceLICPainter* -->
-          <return type-id='type-id-495'/>
+          <return type-id='type-id-497'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkTimeStamp -->
-    <class-decl name='vtkTimeStamp' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='30' column='1' id='type-id-500'>
+    <class-decl name='vtkTimeStamp' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='30' column='1' id='type-id-502'>
       <data-member access='private' layout-offset-in-bits='0'>
         <!-- unsigned long int vtkTimeStamp::ModifiedTime -->
         <var-decl name='ModifiedTime' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='63' column='1'/>
@@ -16713,7 +16743,7 @@ 
         <!-- vtkTimeStamp::vtkTimeStamp() -->
         <function-decl name='vtkTimeStamp' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkTimeStamp*' -->
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-503' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -16722,14 +16752,14 @@ 
         <!-- vtkTimeStamp* vtkTimeStamp::New() -->
         <function-decl name='New' mangled-name='_ZN12vtkTimeStamp3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- vtkTimeStamp* -->
-          <return type-id='type-id-501'/>
+          <return type-id='type-id-503'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkTimeStamp::Delete() -->
         <function-decl name='Delete' mangled-name='_ZN12vtkTimeStamp6DeleteEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkTimeStamp*' -->
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-503' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -16738,7 +16768,7 @@ 
         <!-- void vtkTimeStamp::Modified() -->
         <function-decl name='Modified' mangled-name='_ZN12vtkTimeStamp8ModifiedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkTimeStamp*' -->
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-503' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -16747,7 +16777,7 @@ 
         <!-- unsigned long int vtkTimeStamp::GetMTime() -->
         <function-decl name='GetMTime' mangled-name='_ZNK12vtkTimeStamp8GetMTimeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkTimeStamp*' -->
-          <parameter type-id='type-id-502' is-artificial='yes'/>
+          <parameter type-id='type-id-504' is-artificial='yes'/>
           <!-- unsigned long int -->
           <return type-id='type-id-4'/>
         </function-decl>
@@ -16756,9 +16786,9 @@ 
         <!-- bool vtkTimeStamp::operator>(vtkTimeStamp&) -->
         <function-decl name='operator&gt;' mangled-name='_ZN12vtkTimeStampgtERS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkTimeStamp*' -->
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-503' is-artificial='yes'/>
           <!-- parameter of type 'vtkTimeStamp&' -->
-          <parameter type-id='type-id-503'/>
+          <parameter type-id='type-id-505'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -16767,9 +16797,9 @@ 
         <!-- bool vtkTimeStamp::operator<(vtkTimeStamp&) -->
         <function-decl name='operator&lt;' mangled-name='_ZN12vtkTimeStampltERS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkTimeStamp*' -->
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-503' is-artificial='yes'/>
           <!-- parameter of type 'vtkTimeStamp&' -->
-          <parameter type-id='type-id-503'/>
+          <parameter type-id='type-id-505'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -16778,19 +16808,19 @@ 
         <!-- unsigned long int vtkTimeStamp::operator long unsigned int() -->
         <function-decl name='operator long unsigned int' mangled-name='_ZNK12vtkTimeStampcvmEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkTimeStamp*' -->
-          <parameter type-id='type-id-502' is-artificial='yes'/>
+          <parameter type-id='type-id-504' is-artificial='yes'/>
           <!-- unsigned long int -->
           <return type-id='type-id-4'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSurfaceLICPainter -->
-    <class-decl name='vtkSurfaceLICPainter' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='67' column='1' id='type-id-504'>
+    <class-decl name='vtkSurfaceLICPainter' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='67' column='1' id='type-id-506'>
     <!-- class vtkPainter -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-505'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-507'/>
         <member-type access='private'>
           <!-- enum vtkSurfaceLICPainter::__anonymous_enum__ -->
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='210' column='1' id='type-id-506'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='210' column='1' id='type-id-508'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='ENHANCE_CONTRAST_OFF' value='0'/>
             <enumerator name='ENHANCE_CONTRAST_LIC' value='1'/>
@@ -16800,7 +16830,7 @@ 
         </member-type>
         <member-type access='private'>
           <!-- enum vtkSurfaceLICPainter::__anonymous_enum__1 -->
-          <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='374' column='1' id='type-id-507'>
+          <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='374' column='1' id='type-id-509'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='COMPOSITE_INPLACE' value='0'/>
             <enumerator name='COMPOSITE_INPLACE_DISJOINT' value='1'/>
@@ -16810,22 +16840,22 @@ 
         </member-type>
         <member-type access='protected'>
           <!-- class vtkSurfaceLICPainter::vtkInternals -->
-          <class-decl name='vtkInternals' size-in-bits='3392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='824' column='1' id='type-id-508'>
+          <class-decl name='vtkInternals' size-in-bits='3392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='824' column='1' id='type-id-510'>
             <data-member access='private' layout-offset-in-bits='0'>
               <!-- vtkSmartPointer<vtkOpenGLLightMonitor> vtkSurfaceLICPainter::vtkInternals::LightMonitor[8] -->
-              <var-decl name='LightMonitor' type-id='type-id-509' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='826' column='1'/>
+              <var-decl name='LightMonitor' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='826' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='512'>
               <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> vtkSurfaceLICPainter::vtkInternals::ViewMonitor -->
-              <var-decl name='ViewMonitor' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='827' column='1'/>
+              <var-decl name='ViewMonitor' type-id='type-id-512' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='827' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='576'>
               <!-- vtkSmartPointer<vtkBackgroundColorMonitor> vtkSurfaceLICPainter::vtkInternals::BGMonitor -->
-              <var-decl name='BGMonitor' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='828' column='1'/>
+              <var-decl name='BGMonitor' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='828' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='640'>
               <!-- vtkWeakPointer<vtkOpenGLRenderWindow> vtkSurfaceLICPainter::vtkInternals::Context -->
-              <var-decl name='Context' type-id='type-id-512' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='830' column='1'/>
+              <var-decl name='Context' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='830' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='704'>
               <!-- bool vtkSurfaceLICPainter::vtkInternals::GLSupport -->
@@ -16889,83 +16919,83 @@ 
             </data-member>
             <data-member access='private' layout-offset-in-bits='1920'>
               <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::DepthImage -->
-              <var-decl name='DepthImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='851' column='1'/>
+              <var-decl name='DepthImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='851' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='1984'>
               <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::GeometryImage -->
-              <var-decl name='GeometryImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='855' column='1'/>
+              <var-decl name='GeometryImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='855' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2048'>
               <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::VectorImage -->
-              <var-decl name='VectorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='856' column='1'/>
+              <var-decl name='VectorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='856' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2112'>
               <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::CompositeVectorImage -->
-              <var-decl name='CompositeVectorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='857' column='1'/>
+              <var-decl name='CompositeVectorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='857' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2176'>
               <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::MaskVectorImage -->
-              <var-decl name='MaskVectorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='858' column='1'/>
+              <var-decl name='MaskVectorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='858' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2240'>
               <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::CompositeMaskVectorImage -->
-              <var-decl name='CompositeMaskVectorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='859' column='1'/>
+              <var-decl name='CompositeMaskVectorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='859' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2304'>
               <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::NoiseImage -->
-              <var-decl name='NoiseImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='860' column='1'/>
+              <var-decl name='NoiseImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='860' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2368'>
               <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::LICImage -->
-              <var-decl name='LICImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='861' column='1'/>
+              <var-decl name='LICImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='861' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2432'>
               <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::RGBColorImage -->
-              <var-decl name='RGBColorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='862' column='1'/>
+              <var-decl name='RGBColorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='862' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2496'>
               <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::HSLColorImage -->
-              <var-decl name='HSLColorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='863' column='1'/>
+              <var-decl name='HSLColorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='863' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2560'>
               <!-- vtkSmartPointer<vtkImageData> vtkSurfaceLICPainter::vtkInternals::Noise -->
-              <var-decl name='Noise' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='864' column='1'/>
+              <var-decl name='Noise' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='864' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2624'>
               <!-- vtkSmartPointer<vtkFrameBufferObject2> vtkSurfaceLICPainter::vtkInternals::FBO -->
-              <var-decl name='FBO' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='866' column='1'/>
+              <var-decl name='FBO' type-id='type-id-517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='866' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2688'>
               <!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::RenderGeometryPass -->
-              <var-decl name='RenderGeometryPass' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='868' column='1'/>
+              <var-decl name='RenderGeometryPass' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='868' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2752'>
               <!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::ColorPass -->
-              <var-decl name='ColorPass' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='869' column='1'/>
+              <var-decl name='ColorPass' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='869' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2816'>
               <!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::ColorEnhancePass -->
-              <var-decl name='ColorEnhancePass' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='870' column='1'/>
+              <var-decl name='ColorEnhancePass' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='870' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2880'>
               <!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::CopyPass -->
-              <var-decl name='CopyPass' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='871' column='1'/>
+              <var-decl name='CopyPass' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='871' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2944'>
               <!-- vtkSmartPointer<vtkLightingHelper> vtkSurfaceLICPainter::vtkInternals::LightingHelper -->
-              <var-decl name='LightingHelper' type-id='type-id-517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='872' column='1'/>
+              <var-decl name='LightingHelper' type-id='type-id-519' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='872' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='3008'>
               <!-- vtkSmartPointer<vtkColorMaterialHelper> vtkSurfaceLICPainter::vtkInternals::ColorMaterialHelper -->
-              <var-decl name='ColorMaterialHelper' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='873' column='1'/>
+              <var-decl name='ColorMaterialHelper' type-id='type-id-520' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='873' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='3072'>
               <!-- vtkSmartPointer<vtkSurfaceLICComposite> vtkSurfaceLICPainter::vtkInternals::Compositor -->
-              <var-decl name='Compositor' type-id='type-id-519' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='875' column='1'/>
+              <var-decl name='Compositor' type-id='type-id-521' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='875' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='3136'>
               <!-- vtkSmartPointer<vtkLineIntegralConvolution2D> vtkSurfaceLICPainter::vtkInternals::LICer -->
-              <var-decl name='LICer' type-id='type-id-520' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='876' column='1'/>
+              <var-decl name='LICer' type-id='type-id-522' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='876' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='3200'>
               <!-- int vtkSurfaceLICPainter::vtkInternals::FieldAssociation -->
@@ -16991,7 +17021,7 @@ 
               <!-- vtkSurfaceLICPainter::vtkInternals::vtkInternals() -->
               <function-decl name='vtkInternals' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='888' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- void -->
                 <return type-id='type-id-26'/>
               </function-decl>
@@ -17000,7 +17030,7 @@ 
               <!-- vtkSurfaceLICPainter::vtkInternals::~vtkInternals(int) -->
               <function-decl name='~vtkInternals' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='927' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- artificial parameter of type 'int' -->
                 <parameter type-id='type-id-17' is-artificial='yes'/>
                 <!-- void -->
@@ -17020,7 +17050,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::ClearGraphicsResources() -->
               <function-decl name='ClearGraphicsResources' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals22ClearGraphicsResourcesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='989' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- void -->
                 <return type-id='type-id-26'/>
               </function-decl>
@@ -17029,7 +17059,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::ClearTextures() -->
               <function-decl name='ClearTextures' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ClearTexturesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1008' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- void -->
                 <return type-id='type-id-26'/>
               </function-decl>
@@ -17038,7 +17068,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::AllocateTextures(vtkRenderWindow*, int*) -->
               <function-decl name='AllocateTextures' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals16AllocateTexturesEP15vtkRenderWindowPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1024' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'vtkRenderWindow*' -->
                 <parameter type-id='type-id-77'/>
                 <!-- parameter of type 'int*' -->
@@ -17051,13 +17081,13 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::AllocateTexture(vtkRenderWindow*, int*, vtkSmartPointer<vtkTextureObject>&, int) -->
               <function-decl name='AllocateTexture' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals15AllocateTextureEP15vtkRenderWindowPiR15vtkSmartPointerI16vtkTextureObjectEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1041' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'vtkRenderWindow*' -->
                 <parameter type-id='type-id-77'/>
                 <!-- parameter of type 'int*' -->
                 <parameter type-id='type-id-54'/>
                 <!-- parameter of type 'vtkSmartPointer<vtkTextureObject>&' -->
-                <parameter type-id='type-id-522'/>
+                <parameter type-id='type-id-524'/>
                 <!-- parameter of type 'int' -->
                 <parameter type-id='type-id-17'/>
                 <!-- void -->
@@ -17068,13 +17098,13 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::AllocateDepthTexture(vtkRenderWindow*, int*, vtkSmartPointer<vtkTextureObject>&) -->
               <function-decl name='AllocateDepthTexture' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals20AllocateDepthTextureEP15vtkRenderWindowPiR15vtkSmartPointerI16vtkTextureObjectE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1068' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'vtkRenderWindow*' -->
                 <parameter type-id='type-id-77'/>
                 <!-- parameter of type 'int*' -->
                 <parameter type-id='type-id-54'/>
                 <!-- parameter of type 'vtkSmartPointer<vtkTextureObject>&' -->
-                <parameter type-id='type-id-522'/>
+                <parameter type-id='type-id-524'/>
                 <!-- void -->
                 <return type-id='type-id-26'/>
               </function-decl>
@@ -17083,7 +17113,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::Updated() -->
               <function-decl name='Updated' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals7UpdatedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1102' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- void -->
                 <return type-id='type-id-26'/>
               </function-decl>
@@ -17092,7 +17122,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::UpdateAll() -->
               <function-decl name='UpdateAll' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals9UpdateAllEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1116' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- void -->
                 <return type-id='type-id-26'/>
               </function-decl>
@@ -17101,7 +17131,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::ViewportQuadTextureCoords(GLfloat*) -->
               <function-decl name='ViewportQuadTextureCoords' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals25ViewportQuadTextureCoordsEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1129' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'GLfloat*' -->
                 <parameter type-id='type-id-60'/>
                 <!-- void -->
@@ -17112,7 +17142,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::ViewportQuadPoints(const vtkPixelExtent&, GLfloat*) -->
               <function-decl name='ViewportQuadPoints' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals18ViewportQuadPointsERK14vtkPixelExtentPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1138' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'const vtkPixelExtent&' -->
                 <parameter type-id='type-id-49'/>
                 <!-- parameter of type 'GLfloat*' -->
@@ -17125,7 +17155,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::ViewportQuadTextureCoords(const vtkPixelExtent&, const vtkPixelExtent&, GLfloat*) -->
               <function-decl name='ViewportQuadTextureCoords' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals25ViewportQuadTextureCoordsERK14vtkPixelExtentS3_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1146' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'const vtkPixelExtent&' -->
                 <parameter type-id='type-id-49'/>
                 <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -17140,7 +17170,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::ViewQuadPoints(GLfloat*) -->
               <function-decl name='ViewQuadPoints' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14ViewQuadPointsEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1168' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'GLfloat*' -->
                 <parameter type-id='type-id-60'/>
                 <!-- void -->
@@ -17151,7 +17181,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::ViewQuadTextureCoords(GLfloat*) -->
               <function-decl name='ViewQuadTextureCoords' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals21ViewQuadTextureCoordsEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1177' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'GLfloat*' -->
                 <parameter type-id='type-id-60'/>
                 <!-- void -->
@@ -17162,7 +17192,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::RenderQuad(const vtkPixelExtent&, const vtkPixelExtent&, int) -->
               <function-decl name='RenderQuad' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals10RenderQuadERK14vtkPixelExtentS3_i' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1185' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'const vtkPixelExtent&' -->
                 <parameter type-id='type-id-49'/>
                 <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -17177,7 +17207,7 @@ 
               <!-- bool vtkSurfaceLICPainter::vtkInternals::LightingChanged() -->
               <function-decl name='LightingChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals15LightingChangedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1219' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- bool -->
                 <return type-id='type-id-1'/>
               </function-decl>
@@ -17186,7 +17216,7 @@ 
               <!-- bool vtkSurfaceLICPainter::vtkInternals::ViewChanged() -->
               <function-decl name='ViewChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals11ViewChangedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1236' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- bool -->
                 <return type-id='type-id-1'/>
               </function-decl>
@@ -17195,9 +17225,9 @@ 
               <!-- bool vtkSurfaceLICPainter::vtkInternals::BackgroundChanged(vtkRenderer*) -->
               <function-decl name='BackgroundChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals17BackgroundChangedEP11vtkRenderer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1244' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'vtkRenderer*' -->
-                <parameter type-id='type-id-523'/>
+                <parameter type-id='type-id-525'/>
                 <!-- bool -->
                 <return type-id='type-id-1'/>
               </function-decl>
@@ -17206,7 +17236,7 @@ 
               <!-- int vtkSurfaceLICPainter::vtkInternals::idx(int, int) -->
               <function-decl name='idx' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals3idxEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1252' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'int' -->
                 <parameter type-id='type-id-17'/>
                 <!-- parameter of type 'int' -->
@@ -17219,7 +17249,7 @@ 
               <!-- bool vtkSurfaceLICPainter::vtkInternals::VisibilityTest(double*) -->
               <function-decl name='VisibilityTest' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14VisibilityTestEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1263' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'double*' -->
                 <parameter type-id='type-id-194'/>
                 <!-- bool -->
@@ -17230,7 +17260,7 @@ 
               <!-- bool vtkSurfaceLICPainter::vtkInternals::ProjectBounds(double*, int*, double*, vtkPixelExtent&) -->
               <function-decl name='ProjectBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ProjectBoundsEPdPiS1_R14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1299' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'double*' -->
                 <parameter type-id='type-id-194'/>
                 <!-- parameter of type 'int*' -->
@@ -17247,7 +17277,7 @@ 
               <!-- int vtkSurfaceLICPainter::vtkInternals::ProjectBounds(vtkDataObject*, int*, vtkPixelExtent&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
               <function-decl name='ProjectBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ProjectBoundsEP13vtkDataObjectPiR14vtkPixelExtentRSt5dequeIS4_SaIS4_EE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1390' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'vtkDataObject*' -->
                 <parameter type-id='type-id-236'/>
                 <!-- parameter of type 'int*' -->
@@ -17264,7 +17294,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::GetPixelBounds(float*, int, vtkPixelExtent&) -->
               <function-decl name='GetPixelBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14GetPixelBoundsEPfiR14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1474' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'float*' -->
                 <parameter type-id='type-id-59'/>
                 <!-- parameter of type 'int' -->
@@ -17279,7 +17309,7 @@ 
               <!-- void vtkSurfaceLICPainter::vtkInternals::GetPixelBounds(float*, int, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
               <function-decl name='GetPixelBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14GetPixelBoundsEPfiRSt5dequeI14vtkPixelExtentSaIS3_EE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1496' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <!-- parameter of type 'float*' -->
                 <parameter type-id='type-id-59'/>
                 <!-- parameter of type 'int' -->
@@ -17346,7 +17376,7 @@ 
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1792'>
         <!-- double vtkSurfaceLICPainter::MaskColor[3] -->
-        <var-decl name='MaskColor' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='502' column='1'/>
+        <var-decl name='MaskColor' type-id='type-id-526' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='502' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1984'>
         <!-- int vtkSurfaceLICPainter::ColorMode -->
@@ -17418,13 +17448,13 @@ 
       </data-member>
       <data-member access='protected' layout-offset-in-bits='2816'>
         <!-- vtkSurfaceLICPainter::vtkInternals* vtkSurfaceLICPainter::Internals -->
-        <var-decl name='Internals' type-id='type-id-521' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='525' column='1'/>
+        <var-decl name='Internals' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='525' column='1'/>
       </data-member>
       <member-function access='private' static='yes'>
         <!-- vtkSurfaceLICPainter* vtkSurfaceLICPainter::New() -->
         <function-decl name='New' mangled-name='_ZN20vtkSurfaceLICPainter3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter3NewEv'>
           <!-- vtkSurfaceLICPainter* -->
-          <return type-id='type-id-495'/>
+          <return type-id='type-id-497'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -17442,23 +17472,23 @@ 
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-66'/>
           <!-- vtkSurfaceLICPainter* -->
-          <return type-id='type-id-495'/>
+          <return type-id='type-id-497'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSurfaceLICPainter* vtkSurfaceLICPainter::NewInstance() -->
         <function-decl name='NewInstance' mangled-name='_ZNK20vtkSurfaceLICPainter11NewInstanceEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-525' is-artificial='yes'/>
+          <parameter type-id='type-id-527' is-artificial='yes'/>
           <!-- vtkSurfaceLICPainter* -->
-          <return type-id='type-id-495'/>
+          <return type-id='type-id-497'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSurfaceLICPainter::SetEnable(int) -->
         <function-decl name='SetEnable' mangled-name='_ZN20vtkSurfaceLICPainter9SetEnableEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1645' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9SetEnableEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17469,7 +17499,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetEnableOn() -->
         <function-decl name='SetEnableOn' mangled-name='_ZN20vtkSurfaceLICPainter11SetEnableOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -17478,7 +17508,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetEnableOff() -->
         <function-decl name='SetEnableOff' mangled-name='_ZN20vtkSurfaceLICPainter12SetEnableOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -17487,7 +17517,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetInputArrayToProcess(int, const char*) -->
         <function-decl name='SetInputArrayToProcess' mangled-name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'const char*' -->
@@ -17500,7 +17530,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetInputArrayToProcess(int, int) -->
         <function-decl name='SetInputArrayToProcess' mangled-name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1602' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'int' -->
@@ -17513,7 +17543,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNumberOfSteps(int) -->
         <function-decl name='SetNumberOfSteps' mangled-name='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1735' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17524,7 +17554,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetStepSize(double) -->
         <function-decl name='SetStepSize' mangled-name='_ZN20vtkSurfaceLICPainter11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1741' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter11SetStepSizeEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17535,7 +17565,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNormalizeVectors(int) -->
         <function-decl name='SetNormalizeVectors' mangled-name='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1747' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17546,7 +17576,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaskOnSurface(int) -->
         <function-decl name='SetMaskOnSurface' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17557,7 +17587,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaskThreshold(double) -->
         <function-decl name='SetMaskThreshold' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1755' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17568,7 +17598,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaskColor(double*) -->
         <function-decl name='SetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1838' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- void -->
@@ -17579,7 +17609,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaskColor(double, double, double) -->
         <function-decl name='SetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12SetMaskColorEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- parameter of type 'double' -->
@@ -17594,7 +17624,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaskIntensity(double) -->
         <function-decl name='SetMaskIntensity' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1809' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17605,7 +17635,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetEnhancedLIC(int) -->
         <function-decl name='SetEnhancedLIC' mangled-name='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1760' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17616,7 +17646,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetEnhanceContrast(int) -->
         <function-decl name='SetEnhanceContrast' mangled-name='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17627,7 +17657,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetLowLICContrastEnhancementFactor(double) -->
         <function-decl name='SetLowLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17638,7 +17668,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetHighLICContrastEnhancementFactor(double) -->
         <function-decl name='SetHighLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1774' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17649,7 +17679,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetLowColorContrastEnhancementFactor(double) -->
         <function-decl name='SetLowColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1823' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17660,7 +17690,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetHighColorContrastEnhancementFactor(double) -->
         <function-decl name='SetHighColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1830' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17671,7 +17701,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetAntiAlias(int) -->
         <function-decl name='SetAntiAlias' mangled-name='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17682,7 +17712,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetColorMode(int) -->
         <function-decl name='SetColorMode' mangled-name='_ZN20vtkSurfaceLICPainter12SetColorModeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1797' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetColorModeEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17693,7 +17723,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetLICIntensity(double) -->
         <function-decl name='SetLICIntensity' mangled-name='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17704,7 +17734,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMapModeBias(double) -->
         <function-decl name='SetMapModeBias' mangled-name='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1816' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17715,7 +17745,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNoiseDataSet(vtkImageData*) -->
         <function-decl name='SetNoiseDataSet' mangled-name='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1932' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-240'/>
           <!-- void -->
@@ -17726,7 +17756,7 @@ 
         <!-- vtkImageData* vtkSurfaceLICPainter::GetNoiseDataSet() -->
         <function-decl name='GetNoiseDataSet' mangled-name='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- vtkImageData* -->
           <return type-id='type-id-240'/>
         </function-decl>
@@ -17735,7 +17765,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetGenerateNoiseTexture(int) -->
         <function-decl name='SetGenerateNoiseTexture' mangled-name='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1650' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17746,7 +17776,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNoiseType(int) -->
         <function-decl name='SetNoiseType' mangled-name='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1657' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17757,7 +17787,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNoiseTextureSize(int) -->
         <function-decl name='SetNoiseTextureSize' mangled-name='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17768,7 +17798,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNoiseGrainSize(int) -->
         <function-decl name='SetNoiseGrainSize' mangled-name='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1671' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17779,7 +17809,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMinNoiseValue(double) -->
         <function-decl name='SetMinNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1678' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17790,7 +17820,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaxNoiseValue(double) -->
         <function-decl name='SetMaxNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17801,7 +17831,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNumberOfNoiseLevels(int) -->
         <function-decl name='SetNumberOfNoiseLevels' mangled-name='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1696' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17812,7 +17842,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetImpulseNoiseProbability(double) -->
         <function-decl name='SetImpulseNoiseProbability' mangled-name='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1703' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17823,7 +17853,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetImpulseNoiseBackgroundValue(double) -->
         <function-decl name='SetImpulseNoiseBackgroundValue' mangled-name='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1712' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -17834,7 +17864,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNoiseGeneratorSeed(int) -->
         <function-decl name='SetNoiseGeneratorSeed' mangled-name='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1721' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17845,7 +17875,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetCompositeStrategy(int) -->
         <function-decl name='SetCompositeStrategy' mangled-name='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1729' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -17865,7 +17895,7 @@ 
         <!-- vtkSurfaceLICPainter::vtkSurfaceLICPainter() -->
         <function-decl name='vtkSurfaceLICPainter' mangled-name='_ZN20vtkSurfaceLICPainterC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainterC1Ev'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -17874,7 +17904,7 @@ 
         <!-- void vtkSurfaceLICPainter::CreateCommunicator() -->
         <function-decl name='CreateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2487' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -17883,7 +17913,7 @@ 
         <!-- void vtkSurfaceLICPainter::GetBounds(vtkDataObject*, double*) -->
         <function-decl name='GetBounds' mangled-name='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkDataObject*' -->
           <parameter type-id='type-id-236'/>
           <!-- parameter of type 'double*' -->
@@ -17896,7 +17926,7 @@ 
         <!-- void vtkSurfaceLICPainter::UpdateNoiseImage(vtkRenderWindow*) -->
         <function-decl name='UpdateNoiseImage' mangled-name='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2020' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderWindow*' -->
           <parameter type-id='type-id-77'/>
           <!-- void -->
@@ -17907,9 +17937,9 @@ 
         <!-- void vtkSurfaceLICPainter::ValidateContext(vtkRenderer*) -->
         <function-decl name='ValidateContext' mangled-name='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderer*' -->
-          <parameter type-id='type-id-523'/>
+          <parameter type-id='type-id-525'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -17918,7 +17948,7 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToUpdateOutputData() -->
         <function-decl name='NeedToUpdateOutputData' mangled-name='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -17927,11 +17957,11 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToRenderGeometry(vtkRenderer*, vtkActor*) -->
         <function-decl name='NeedToRenderGeometry' mangled-name='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderer*' -->
-          <parameter type-id='type-id-523'/>
+          <parameter type-id='type-id-525'/>
           <!-- parameter of type 'vtkActor*' -->
-          <parameter type-id='type-id-526'/>
+          <parameter type-id='type-id-528'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -17940,7 +17970,7 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToGatherVectors() -->
         <function-decl name='NeedToGatherVectors' mangled-name='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2312' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -17949,7 +17979,7 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToComputeLIC() -->
         <function-decl name='NeedToComputeLIC' mangled-name='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -17958,7 +17988,7 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToColorLIC() -->
         <function-decl name='NeedToColorLIC' mangled-name='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -17967,7 +17997,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetUpdateAll() -->
         <function-decl name='SetUpdateAll' mangled-name='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -17976,7 +18006,7 @@ 
         <!-- bool vtkSurfaceLICPainter::PrepareOutput() -->
         <function-decl name='PrepareOutput' mangled-name='_ZN20vtkSurfaceLICPainter13PrepareOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter13PrepareOutputEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -17985,7 +18015,7 @@ 
         <!-- void vtkSurfaceLICPainter::InitializeResources() -->
         <function-decl name='InitializeResources' mangled-name='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -17994,7 +18024,7 @@ 
         <!-- bool vtkSurfaceLICPainter::VectorsToTCoords(vtkDataObject*) -->
         <function-decl name='VectorsToTCoords' mangled-name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkDataObject*' -->
           <parameter type-id='type-id-236'/>
           <!-- bool -->
@@ -18005,7 +18035,7 @@ 
         <!-- bool vtkSurfaceLICPainter::VectorsToTCoords(vtkDataSet*) -->
         <function-decl name='VectorsToTCoords' mangled-name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkDataSet*' -->
           <parameter type-id='type-id-238'/>
           <!-- bool -->
@@ -18016,7 +18046,7 @@ 
         <!-- void vtkSurfaceLICPainter::ClearTCoords(vtkDataSet*) -->
         <function-decl name='ClearTCoords' mangled-name='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkDataSet*' -->
           <parameter type-id='type-id-238'/>
           <!-- void -->
@@ -18027,9 +18057,9 @@ 
         <!-- bool vtkSurfaceLICPainter::CanRenderSurfaceLIC(vtkActor*, int) -->
         <function-decl name='CanRenderSurfaceLIC' mangled-name='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2066' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkActor*' -->
-          <parameter type-id='type-id-526'/>
+          <parameter type-id='type-id-528'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- bool -->
@@ -18040,9 +18070,9 @@ 
         <!-- vtkSurfaceLICPainter::vtkSurfaceLICPainter(const vtkSurfaceLICPainter&) -->
         <function-decl name='vtkSurfaceLICPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='528' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSurfaceLICPainter&' -->
-          <parameter type-id='type-id-527'/>
+          <parameter type-id='type-id-529'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18051,9 +18081,9 @@ 
         <!-- void vtkSurfaceLICPainter::operator=(const vtkSurfaceLICPainter&) -->
         <function-decl name='operator=' mangled-name='_ZN20vtkSurfaceLICPainteraSERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSurfaceLICPainter&' -->
-          <parameter type-id='type-id-527'/>
+          <parameter type-id='type-id-529'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18062,7 +18092,7 @@ 
         <!-- vtkSurfaceLICPainter::~vtkSurfaceLICPainter(int) -->
         <function-decl name='~vtkSurfaceLICPainter' mangled-name='_ZN20vtkSurfaceLICPainterD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainterD1Ev'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -18073,7 +18103,7 @@ 
         <!-- const char* vtkSurfaceLICPainter::GetClassNameInternal() -->
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK20vtkSurfaceLICPainter20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-525' is-artificial='yes'/>
+          <parameter type-id='type-id-527' is-artificial='yes'/>
           <!-- const char* -->
           <return type-id='type-id-68'/>
         </function-decl>
@@ -18082,7 +18112,7 @@ 
         <!-- int vtkSurfaceLICPainter::IsA(const char*) -->
         <function-decl name='IsA' mangled-name='_ZN20vtkSurfaceLICPainter3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- int -->
@@ -18093,7 +18123,7 @@ 
         <!-- void vtkSurfaceLICPainter::PrintSelf(std::ostream&, vtkIndent) -->
         <function-decl name='PrintSelf' mangled-name='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3408' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'std::ostream&' -->
           <parameter type-id='type-id-72'/>
           <!-- parameter of type 'class vtkIndent' -->
@@ -18106,9 +18136,9 @@ 
         <!-- void vtkSurfaceLICPainter::ReportReferences(vtkGarbageCollector*) -->
         <function-decl name='ReportReferences' mangled-name='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkGarbageCollector*' -->
-          <parameter type-id='type-id-499'/>
+          <parameter type-id='type-id-501'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18117,7 +18147,7 @@ 
         <!-- vtkObjectBase* vtkSurfaceLICPainter::NewInstanceInternal() -->
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK20vtkSurfaceLICPainter19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-525' is-artificial='yes'/>
+          <parameter type-id='type-id-527' is-artificial='yes'/>
           <!-- vtkObjectBase* -->
           <return type-id='type-id-66'/>
         </function-decl>
@@ -18126,9 +18156,9 @@ 
         <!-- void vtkSurfaceLICPainter::ReleaseGraphicsResources(vtkWindow*) -->
         <function-decl name='ReleaseGraphicsResources' mangled-name='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1620' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkWindow*' -->
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-530'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18137,7 +18167,7 @@ 
         <!-- vtkDataObject* vtkSurfaceLICPainter::GetOutput() -->
         <function-decl name='GetOutput' mangled-name='_ZN20vtkSurfaceLICPainter9GetOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9GetOutputEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- vtkDataObject* -->
           <return type-id='type-id-236'/>
         </function-decl>
@@ -18146,11 +18176,11 @@ 
         <!-- void vtkSurfaceLICPainter::RenderInternal(vtkRenderer*, vtkActor*, unsigned long int, bool) -->
         <function-decl name='RenderInternal' mangled-name='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderer*' -->
-          <parameter type-id='type-id-523'/>
+          <parameter type-id='type-id-525'/>
           <!-- parameter of type 'vtkActor*' -->
-          <parameter type-id='type-id-526'/>
+          <parameter type-id='type-id-528'/>
           <!-- parameter of type 'unsigned long int' -->
           <parameter type-id='type-id-4'/>
           <!-- parameter of type 'bool' -->
@@ -18163,7 +18193,7 @@ 
         <!-- void vtkSurfaceLICPainter::ProcessInformation(vtkInformation*) -->
         <function-decl name='ProcessInformation' mangled-name='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkInformation*' -->
           <parameter type-id='type-id-114'/>
           <!-- void -->
@@ -18174,7 +18204,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetEnable() -->
         <function-decl name='GetEnable' mangled-name='_ZN20vtkSurfaceLICPainter9GetEnableEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18183,7 +18213,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNumberOfSteps() -->
         <function-decl name='GetNumberOfSteps' mangled-name='_ZN20vtkSurfaceLICPainter16GetNumberOfStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18192,7 +18222,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetStepSize() -->
         <function-decl name='GetStepSize' mangled-name='_ZN20vtkSurfaceLICPainter11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18201,7 +18231,7 @@ 
         <!-- void vtkSurfaceLICPainter::NormalizeVectorsOn() -->
         <function-decl name='NormalizeVectorsOn' mangled-name='_ZN20vtkSurfaceLICPainter18NormalizeVectorsOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18210,7 +18240,7 @@ 
         <!-- void vtkSurfaceLICPainter::NormalizeVectorsOff() -->
         <function-decl name='NormalizeVectorsOff' mangled-name='_ZN20vtkSurfaceLICPainter19NormalizeVectorsOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18219,7 +18249,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNormalizeVectors() -->
         <function-decl name='GetNormalizeVectors' mangled-name='_ZN20vtkSurfaceLICPainter19GetNormalizeVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18228,7 +18258,7 @@ 
         <!-- void vtkSurfaceLICPainter::MaskOnSurfaceOn() -->
         <function-decl name='MaskOnSurfaceOn' mangled-name='_ZN20vtkSurfaceLICPainter15MaskOnSurfaceOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18237,7 +18267,7 @@ 
         <!-- void vtkSurfaceLICPainter::MaskOnSurfaceOff() -->
         <function-decl name='MaskOnSurfaceOff' mangled-name='_ZN20vtkSurfaceLICPainter16MaskOnSurfaceOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18246,7 +18276,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetMaskOnSurface() -->
         <function-decl name='GetMaskOnSurface' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskOnSurfaceEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18255,7 +18285,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetMaskThreshold() -->
         <function-decl name='GetMaskThreshold' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskThresholdEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18264,7 +18294,7 @@ 
         <!-- double* vtkSurfaceLICPainter::GetMaskColor() -->
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double* -->
           <return type-id='type-id-194'/>
         </function-decl>
@@ -18273,13 +18303,13 @@ 
         <!-- void vtkSurfaceLICPainter::GetMaskColor(double&, double&, double&) -->
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorERdS0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18288,7 +18318,7 @@ 
         <!-- void vtkSurfaceLICPainter::GetMaskColor(double*) -->
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- void -->
@@ -18299,7 +18329,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetMaskIntensity() -->
         <function-decl name='GetMaskIntensity' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskIntensityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18308,7 +18338,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetEnhancedLIC() -->
         <function-decl name='GetEnhancedLIC' mangled-name='_ZN20vtkSurfaceLICPainter14GetEnhancedLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18317,7 +18347,7 @@ 
         <!-- void vtkSurfaceLICPainter::EnhancedLICOn() -->
         <function-decl name='EnhancedLICOn' mangled-name='_ZN20vtkSurfaceLICPainter13EnhancedLICOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18326,7 +18356,7 @@ 
         <!-- void vtkSurfaceLICPainter::EnhancedLICOff() -->
         <function-decl name='EnhancedLICOff' mangled-name='_ZN20vtkSurfaceLICPainter14EnhancedLICOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18335,7 +18365,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetEnhanceContrast() -->
         <function-decl name='GetEnhanceContrast' mangled-name='_ZN20vtkSurfaceLICPainter18GetEnhanceContrastEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18344,7 +18374,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetLowLICContrastEnhancementFactor() -->
         <function-decl name='GetLowLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter34GetLowLICContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18353,7 +18383,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetHighLICContrastEnhancementFactor() -->
         <function-decl name='GetHighLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter35GetHighLICContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18362,7 +18392,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetLowColorContrastEnhancementFactor() -->
         <function-decl name='GetLowColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter36GetLowColorContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18371,7 +18401,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetHighColorContrastEnhancementFactor() -->
         <function-decl name='GetHighColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter37GetHighColorContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18380,7 +18410,7 @@ 
         <!-- void vtkSurfaceLICPainter::AntiAliasOn() -->
         <function-decl name='AntiAliasOn' mangled-name='_ZN20vtkSurfaceLICPainter11AntiAliasOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18389,7 +18419,7 @@ 
         <!-- void vtkSurfaceLICPainter::AntiAliasOff() -->
         <function-decl name='AntiAliasOff' mangled-name='_ZN20vtkSurfaceLICPainter12AntiAliasOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18398,7 +18428,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetAntiAlias() -->
         <function-decl name='GetAntiAlias' mangled-name='_ZN20vtkSurfaceLICPainter12GetAntiAliasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18407,7 +18437,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetColorMode() -->
         <function-decl name='GetColorMode' mangled-name='_ZN20vtkSurfaceLICPainter12GetColorModeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18416,7 +18446,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetLICIntensity() -->
         <function-decl name='GetLICIntensity' mangled-name='_ZN20vtkSurfaceLICPainter15GetLICIntensityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18425,7 +18455,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetMapModeBias() -->
         <function-decl name='GetMapModeBias' mangled-name='_ZN20vtkSurfaceLICPainter14GetMapModeBiasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18434,7 +18464,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetGenerateNoiseTexture() -->
         <function-decl name='GetGenerateNoiseTexture' mangled-name='_ZN20vtkSurfaceLICPainter23GetGenerateNoiseTextureEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18443,7 +18473,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNoiseType() -->
         <function-decl name='GetNoiseType' mangled-name='_ZN20vtkSurfaceLICPainter12GetNoiseTypeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='326' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18452,7 +18482,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNoiseTextureSize() -->
         <function-decl name='GetNoiseTextureSize' mangled-name='_ZN20vtkSurfaceLICPainter19GetNoiseTextureSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18461,7 +18491,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNoiseGrainSize() -->
         <function-decl name='GetNoiseGrainSize' mangled-name='_ZN20vtkSurfaceLICPainter17GetNoiseGrainSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18470,7 +18500,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetMinNoiseValue() -->
         <function-decl name='GetMinNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16GetMinNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18479,7 +18509,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetMaxNoiseValue() -->
         <function-decl name='GetMaxNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaxNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='348' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18488,7 +18518,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNumberOfNoiseLevels() -->
         <function-decl name='GetNumberOfNoiseLevels' mangled-name='_ZN20vtkSurfaceLICPainter22GetNumberOfNoiseLevelsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18497,7 +18527,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetImpulseNoiseProbability() -->
         <function-decl name='GetImpulseNoiseProbability' mangled-name='_ZN20vtkSurfaceLICPainter26GetImpulseNoiseProbabilityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18506,7 +18536,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetImpulseNoiseBackgroundValue() -->
         <function-decl name='GetImpulseNoiseBackgroundValue' mangled-name='_ZN20vtkSurfaceLICPainter30GetImpulseNoiseBackgroundValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='365' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18515,7 +18545,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNoiseGeneratorSeed() -->
         <function-decl name='GetNoiseGeneratorSeed' mangled-name='_ZN20vtkSurfaceLICPainter21GetNoiseGeneratorSeedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='370' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18524,7 +18554,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetCompositeStrategy() -->
         <function-decl name='GetCompositeStrategy' mangled-name='_ZN20vtkSurfaceLICPainter20GetCompositeStrategyEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -18533,7 +18563,7 @@ 
         <!-- void vtkSurfaceLICPainter::WriteTimerLog(const char*) -->
         <function-decl name='WriteTimerLog' mangled-name='_ZN20vtkSurfaceLICPainter13WriteTimerLogEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='393' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- void -->
@@ -18544,7 +18574,7 @@ 
         <!-- void vtkSurfaceLICPainter::GetGlobalMinMax(vtkPainterCommunicator*, float&, float&) -->
         <function-decl name='GetGlobalMinMax' mangled-name='_ZN20vtkSurfaceLICPainter15GetGlobalMinMaxEP22vtkPainterCommunicatorRfS2_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'vtkPainterCommunicator*' -->
           <parameter type-id='type-id-316'/>
           <!-- parameter of type 'float&' -->
@@ -18559,7 +18589,7 @@ 
         <!-- void vtkSurfaceLICPainter::StartTimerEvent(const char*) -->
         <function-decl name='StartTimerEvent' mangled-name='_ZN20vtkSurfaceLICPainter15StartTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='416' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- void -->
@@ -18570,7 +18600,7 @@ 
         <!-- void vtkSurfaceLICPainter::EndTimerEvent(const char*) -->
         <function-decl name='EndTimerEvent' mangled-name='_ZN20vtkSurfaceLICPainter13EndTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- void -->
@@ -18581,7 +18611,7 @@ 
         <!-- vtkPainterCommunicator* vtkSurfaceLICPainter::CreateCommunicator(int) -->
         <function-decl name='CreateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- vtkPainterCommunicator* -->
@@ -18592,59 +18622,59 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToUpdateCommunicator() -->
         <function-decl name='NeedToUpdateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- const vtkSurfaceLICDefaultPainter -->
-    <qualified-type-def type-id='type-id-493' const='yes' id='type-id-530'/>
+    <qualified-type-def type-id='type-id-495' const='yes' id='type-id-532'/>
     <!-- const vtkSurfaceLICDefaultPainter& -->
-    <reference-type-def kind='lvalue' type-id='type-id-530' size-in-bits='64' id='type-id-498'/>
+    <reference-type-def kind='lvalue' type-id='type-id-532' size-in-bits='64' id='type-id-500'/>
     <!-- const vtkSurfaceLICDefaultPainter* -->
-    <pointer-type-def type-id='type-id-530' size-in-bits='64' id='type-id-497'/>
+    <pointer-type-def type-id='type-id-532' size-in-bits='64' id='type-id-499'/>
     <!-- const vtkTimeStamp -->
-    <qualified-type-def type-id='type-id-500' const='yes' id='type-id-531'/>
+    <qualified-type-def type-id='type-id-502' const='yes' id='type-id-533'/>
     <!-- const vtkTimeStamp* -->
-    <pointer-type-def type-id='type-id-531' size-in-bits='64' id='type-id-502'/>
+    <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-504'/>
     <!-- vtkActor* -->
-    <pointer-type-def type-id='type-id-532' size-in-bits='64' id='type-id-526'/>
+    <pointer-type-def type-id='type-id-534' size-in-bits='64' id='type-id-528'/>
     <!-- vtkClipPlanesPainter* -->
-    <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-534'/>
-    <!-- vtkCoincidentTopologyResolutionPainter* -->
     <pointer-type-def type-id='type-id-535' size-in-bits='64' id='type-id-536'/>
-    <!-- vtkCompositePainter* -->
+    <!-- vtkCoincidentTopologyResolutionPainter* -->
     <pointer-type-def type-id='type-id-537' size-in-bits='64' id='type-id-538'/>
+    <!-- vtkCompositePainter* -->
+    <pointer-type-def type-id='type-id-539' size-in-bits='64' id='type-id-540'/>
     <!-- vtkDefaultPainter* -->
-    <pointer-type-def type-id='type-id-494' size-in-bits='64' id='type-id-539'/>
+    <pointer-type-def type-id='type-id-496' size-in-bits='64' id='type-id-541'/>
     <!-- vtkDisplayListPainter* -->
-    <pointer-type-def type-id='type-id-540' size-in-bits='64' id='type-id-541'/>
+    <pointer-type-def type-id='type-id-542' size-in-bits='64' id='type-id-543'/>
     <!-- vtkGarbageCollector* -->
-    <pointer-type-def type-id='type-id-542' size-in-bits='64' id='type-id-499'/>
+    <pointer-type-def type-id='type-id-544' size-in-bits='64' id='type-id-501'/>
     <!-- vtkLightingPainter* -->
-    <pointer-type-def type-id='type-id-543' size-in-bits='64' id='type-id-544'/>
+    <pointer-type-def type-id='type-id-545' size-in-bits='64' id='type-id-546'/>
     <!-- vtkPainter* -->
-    <pointer-type-def type-id='type-id-505' size-in-bits='64' id='type-id-545'/>
+    <pointer-type-def type-id='type-id-507' size-in-bits='64' id='type-id-547'/>
     <!-- vtkRenderer* -->
-    <pointer-type-def type-id='type-id-546' size-in-bits='64' id='type-id-523'/>
+    <pointer-type-def type-id='type-id-548' size-in-bits='64' id='type-id-525'/>
     <!-- vtkRepresentationPainter* -->
-    <pointer-type-def type-id='type-id-547' size-in-bits='64' id='type-id-548'/>
-    <!-- vtkScalarsToColorsPainter* -->
     <pointer-type-def type-id='type-id-549' size-in-bits='64' id='type-id-550'/>
+    <!-- vtkScalarsToColorsPainter* -->
+    <pointer-type-def type-id='type-id-551' size-in-bits='64' id='type-id-552'/>
     <!-- vtkSurfaceLICDefaultPainter* -->
-    <pointer-type-def type-id='type-id-493' size-in-bits='64' id='type-id-496'/>
+    <pointer-type-def type-id='type-id-495' size-in-bits='64' id='type-id-498'/>
     <!-- vtkSurfaceLICPainter* -->
-    <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-495'/>
+    <pointer-type-def type-id='type-id-506' size-in-bits='64' id='type-id-497'/>
     <!-- vtkTimeStamp& -->
-    <reference-type-def kind='lvalue' type-id='type-id-500' size-in-bits='64' id='type-id-503'/>
+    <reference-type-def kind='lvalue' type-id='type-id-502' size-in-bits='64' id='type-id-505'/>
     <!-- vtkTimeStamp* -->
-    <pointer-type-def type-id='type-id-500' size-in-bits='64' id='type-id-501'/>
+    <pointer-type-def type-id='type-id-502' size-in-bits='64' id='type-id-503'/>
     <!-- class vtkPainter -->
-    <class-decl name='vtkPainter' visibility='default' is-declaration-only='yes' id='type-id-505'>
+    <class-decl name='vtkPainter' visibility='default' is-declaration-only='yes' id='type-id-507'>
         <member-type access='private'>
           <!-- enum vtkPainter::__anonymous_enum__ -->
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='100' column='1' id='type-id-551'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='100' column='1' id='type-id-553'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='VERTS' value='1'/>
             <enumerator name='LINES' value='2'/>
@@ -18665,7 +18695,7 @@ 
         <!-- vtkInformation* vtkPainter::GetInformation() -->
         <function-decl name='GetInformation' mangled-name='_ZN10vtkPainter14GetInformationEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <!-- vtkInformation* -->
           <return type-id='type-id-114'/>
         </function-decl>
@@ -18674,16 +18704,16 @@ 
         <!-- vtkPainter* vtkPainter::GetDelegatePainter() -->
         <function-decl name='GetDelegatePainter' mangled-name='_ZN10vtkPainter18GetDelegatePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <!-- vtkPainter* -->
-          <return type-id='type-id-545'/>
+          <return type-id='type-id-547'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='26'>
         <!-- void vtkPainter::SetProgress(double) -->
         <function-decl name='SetProgress' mangled-name='_ZN10vtkPainter11SetProgressEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -18694,7 +18724,7 @@ 
         <!-- double vtkPainter::GetProgressMinValue() -->
         <function-decl name='GetProgressMinValue' mangled-name='_ZN10vtkPainter19GetProgressMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18703,7 +18733,7 @@ 
         <!-- double vtkPainter::GetProgressMaxValue() -->
         <function-decl name='GetProgressMaxValue' mangled-name='_ZN10vtkPainter19GetProgressMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18712,7 +18742,7 @@ 
         <!-- double vtkPainter::GetProgress() -->
         <function-decl name='GetProgress' mangled-name='_ZN10vtkPainter11GetProgressEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -18721,7 +18751,7 @@ 
         <!-- vtkDataObject* vtkPainter::GetInput() -->
         <function-decl name='GetInput' mangled-name='_ZN10vtkPainter8GetInputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <!-- vtkDataObject* -->
           <return type-id='type-id-236'/>
         </function-decl>
@@ -18730,7 +18760,7 @@ 
         <!-- vtkDataObject* vtkPainter::GetOutput() -->
         <function-decl name='GetOutput' mangled-name='_ZN10vtkPainter9GetOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <!-- vtkDataObject* -->
           <return type-id='type-id-236'/>
         </function-decl>
@@ -18739,11 +18769,11 @@ 
         <!-- void vtkPainter::PrepareForRendering(vtkRenderer*, vtkActor*) -->
         <function-decl name='PrepareForRendering' mangled-name='_ZN10vtkPainter19PrepareForRenderingEP11vtkRendererP8vtkActor' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderer*' -->
-          <parameter type-id='type-id-523'/>
+          <parameter type-id='type-id-525'/>
           <!-- parameter of type 'vtkActor*' -->
-          <parameter type-id='type-id-526'/>
+          <parameter type-id='type-id-528'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18752,7 +18782,7 @@ 
         <!-- void vtkPainter::ProcessInformation(vtkInformation*) -->
         <function-decl name='ProcessInformation' mangled-name='_ZN10vtkPainter18ProcessInformationEP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <!-- parameter of type 'vtkInformation*' -->
           <parameter type-id='type-id-114'/>
           <!-- void -->
@@ -18761,19 +18791,19 @@ 
       </member-function>
     </class-decl>
     <!-- struct vtkRenderer -->
-    <class-decl name='vtkRenderer' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-546'>
+    <class-decl name='vtkRenderer' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-548'>
       <member-function access='public'>
         <!-- vtkRenderWindow* vtkRenderer::GetRenderWindow() -->
         <function-decl name='GetRenderWindow' mangled-name='_ZN11vtkRenderer15GetRenderWindowEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkRenderer.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkRenderer*' -->
-          <parameter type-id='type-id-523' is-artificial='yes'/>
+          <parameter type-id='type-id-525' is-artificial='yes'/>
           <!-- vtkRenderWindow* -->
           <return type-id='type-id-77'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkDefaultPainter -->
-    <class-decl name='vtkDefaultPainter' visibility='default' is-declaration-only='yes' id='type-id-494'>
+    <class-decl name='vtkDefaultPainter' visibility='default' is-declaration-only='yes' id='type-id-496'>
       <member-function access='private' static='yes'>
         <!-- int vtkDefaultPainter::IsTypeOf() -->
         <function-decl name='IsTypeOf' mangled-name='_ZN17vtkDefaultPainter8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -18787,114 +18817,114 @@ 
         <!-- vtkPainter* vtkDefaultPainter::GetDelegatePainter() -->
         <function-decl name='GetDelegatePainter' mangled-name='_ZN17vtkDefaultPainter18GetDelegatePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
           <!-- vtkPainter* -->
-          <return type-id='type-id-545'/>
+          <return type-id='type-id-547'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='40'>
         <!-- vtkScalarsToColorsPainter* vtkDefaultPainter::GetScalarsToColorsPainter() -->
         <function-decl name='GetScalarsToColorsPainter' mangled-name='_ZN17vtkDefaultPainter25GetScalarsToColorsPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
           <!-- vtkScalarsToColorsPainter* -->
-          <return type-id='type-id-550'/>
+          <return type-id='type-id-552'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='41'>
         <!-- vtkClipPlanesPainter* vtkDefaultPainter::GetClipPlanesPainter() -->
         <function-decl name='GetClipPlanesPainter' mangled-name='_ZN17vtkDefaultPainter20GetClipPlanesPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
           <!-- vtkClipPlanesPainter* -->
-          <return type-id='type-id-534'/>
+          <return type-id='type-id-536'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='42'>
         <!-- vtkDisplayListPainter* vtkDefaultPainter::GetDisplayListPainter() -->
         <function-decl name='GetDisplayListPainter' mangled-name='_ZN17vtkDefaultPainter21GetDisplayListPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
           <!-- vtkDisplayListPainter* -->
-          <return type-id='type-id-541'/>
+          <return type-id='type-id-543'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='43'>
         <!-- vtkCompositePainter* vtkDefaultPainter::GetCompositePainter() -->
         <function-decl name='GetCompositePainter' mangled-name='_ZN17vtkDefaultPainter19GetCompositePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
           <!-- vtkCompositePainter* -->
-          <return type-id='type-id-538'/>
+          <return type-id='type-id-540'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='44'>
         <!-- vtkCoincidentTopologyResolutionPainter* vtkDefaultPainter::GetCoincidentTopologyResolutionPainter() -->
         <function-decl name='GetCoincidentTopologyResolutionPainter' mangled-name='_ZN17vtkDefaultPainter38GetCoincidentTopologyResolutionPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
           <!-- vtkCoincidentTopologyResolutionPainter* -->
-          <return type-id='type-id-536'/>
+          <return type-id='type-id-538'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='45'>
         <!-- vtkLightingPainter* vtkDefaultPainter::GetLightingPainter() -->
         <function-decl name='GetLightingPainter' mangled-name='_ZN17vtkDefaultPainter18GetLightingPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
           <!-- vtkLightingPainter* -->
-          <return type-id='type-id-544'/>
+          <return type-id='type-id-546'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='46'>
         <!-- vtkRepresentationPainter* vtkDefaultPainter::GetRepresentationPainter() -->
         <function-decl name='GetRepresentationPainter' mangled-name='_ZN17vtkDefaultPainter24GetRepresentationPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
           <!-- vtkRepresentationPainter* -->
-          <return type-id='type-id-548'/>
+          <return type-id='type-id-550'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkClipPlanesPainter -->
-    <class-decl name='vtkClipPlanesPainter' visibility='default' is-declaration-only='yes' id='type-id-533'/>
+    <class-decl name='vtkClipPlanesPainter' visibility='default' is-declaration-only='yes' id='type-id-535'/>
     <!-- class vtkCoincidentTopologyResolutionPainter -->
-    <class-decl name='vtkCoincidentTopologyResolutionPainter' visibility='default' is-declaration-only='yes' id='type-id-535'/>
+    <class-decl name='vtkCoincidentTopologyResolutionPainter' visibility='default' is-declaration-only='yes' id='type-id-537'/>
     <!-- class vtkGarbageCollector -->
-    <class-decl name='vtkGarbageCollector' visibility='default' is-declaration-only='yes' id='type-id-542'/>
+    <class-decl name='vtkGarbageCollector' visibility='default' is-declaration-only='yes' id='type-id-544'/>
     <!-- struct vtkActor -->
-    <class-decl name='vtkActor' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-532'/>
+    <class-decl name='vtkActor' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-534'/>
     <!-- struct vtkCompositePainter -->
-    <class-decl name='vtkCompositePainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-537'/>
+    <class-decl name='vtkCompositePainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-539'/>
     <!-- struct vtkDisplayListPainter -->
-    <class-decl name='vtkDisplayListPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-540'/>
+    <class-decl name='vtkDisplayListPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-542'/>
     <!-- struct vtkLightingPainter -->
-    <class-decl name='vtkLightingPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-543'/>
+    <class-decl name='vtkLightingPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-545'/>
     <!-- struct vtkRepresentationPainter -->
-    <class-decl name='vtkRepresentationPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-547'/>
+    <class-decl name='vtkRepresentationPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-549'/>
     <!-- struct vtkScalarsToColorsPainter -->
-    <class-decl name='vtkScalarsToColorsPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-549'/>
+    <class-decl name='vtkScalarsToColorsPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-551'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- double[3] -->
-    <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='192' id='type-id-524'>
+    <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='192' id='type-id-526'>
       <!-- <anonymous range>[3] -->
-      <subrange length='3' type-id='type-id-4' id='type-id-552'/>
+      <subrange length='3' type-id='type-id-4' id='type-id-554'/>
     </array-type-def>
     <!-- unsigned char -->
-    <type-decl name='unsigned char' size-in-bits='8' id='type-id-553'/>
+    <type-decl name='unsigned char' size-in-bits='8' id='type-id-555'/>
     <!-- vtkSmartPointer<vtkOpenGLLightMonitor>[8] -->
-    <array-type-def dimensions='1' type-id='type-id-554' size-in-bits='512' id='type-id-509'>
+    <array-type-def dimensions='1' type-id='type-id-556' size-in-bits='512' id='type-id-511'>
       <!-- <anonymous range>[8] -->
-      <subrange length='8' type-id='type-id-4' id='type-id-555'/>
+      <subrange length='8' type-id='type-id-4' id='type-id-557'/>
     </array-type-def>
     <!-- typedef float GLfloat -->
-    <typedef-decl name='GLfloat' type-id='type-id-16' filepath='/collab/usr/global/tools/order/spack/opt/chaos_5_x86_64_ib/gcc@4.4.7/mesa@8.0.5-22dd4c4b/include/GL/gl.h' line='160' column='1' id='type-id-556'/>
+    <typedef-decl name='GLfloat' type-id='type-id-16' filepath='/collab/usr/global/tools/order/spack/opt/chaos_5_x86_64_ib/gcc@4.4.7/mesa@8.0.5-22dd4c4b/include/GL/gl.h' line='160' column='1' id='type-id-558'/>
     <!-- class vtkSmartPointerBase -->
-    <class-decl name='vtkSmartPointerBase' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='30' column='1' id='type-id-557'>
+    <class-decl name='vtkSmartPointerBase' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='30' column='1' id='type-id-559'>
         <member-type access='protected'>
           <!-- class vtkSmartPointerBase::NoReference -->
-          <class-decl name='NoReference' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='73' column='1' id='type-id-558'/>
+          <class-decl name='NoReference' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='73' column='1' id='type-id-560'/>
         </member-type>
       <data-member access='protected' layout-offset-in-bits='0'>
         <!-- vtkObjectBase* vtkSmartPointerBase::Object -->
@@ -18904,7 +18934,7 @@ 
         <!-- vtkSmartPointerBase::vtkSmartPointerBase() -->
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18913,7 +18943,7 @@ 
         <!-- vtkSmartPointerBase::vtkSmartPointerBase(vtkObjectBase*) -->
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-66'/>
           <!-- void -->
@@ -18924,9 +18954,9 @@ 
         <!-- vtkSmartPointerBase::vtkSmartPointerBase(const vtkSmartPointerBase&) -->
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -18935,7 +18965,7 @@ 
         <!-- vtkSmartPointerBase::~vtkSmartPointerBase(int) -->
         <function-decl name='~vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <!-- artificial parameter of type 'int' -->
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <!-- void -->
@@ -18946,29 +18976,29 @@ 
         <!-- vtkSmartPointerBase& vtkSmartPointerBase::operator=(vtkObjectBase*) -->
         <function-decl name='operator=' mangled-name='_ZN19vtkSmartPointerBaseaSEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-66'/>
           <!-- vtkSmartPointerBase& -->
-          <return type-id='type-id-561'/>
+          <return type-id='type-id-563'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSmartPointerBase& vtkSmartPointerBase::operator=(const vtkSmartPointerBase&) -->
         <function-decl name='operator=' mangled-name='_ZN19vtkSmartPointerBaseaSERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- vtkSmartPointerBase& -->
-          <return type-id='type-id-561'/>
+          <return type-id='type-id-563'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkObjectBase* vtkSmartPointerBase::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK19vtkSmartPointerBase10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-562' is-artificial='yes'/>
+          <parameter type-id='type-id-564' is-artificial='yes'/>
           <!-- vtkObjectBase* -->
           <return type-id='type-id-66'/>
         </function-decl>
@@ -18977,9 +19007,9 @@ 
         <!-- void vtkSmartPointerBase::Report(vtkGarbageCollector*, const char*) -->
         <function-decl name='Report' mangled-name='_ZN19vtkSmartPointerBase6ReportEP19vtkGarbageCollectorPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <!-- parameter of type 'vtkGarbageCollector*' -->
-          <parameter type-id='type-id-499'/>
+          <parameter type-id='type-id-501'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- void -->
@@ -18990,11 +19020,11 @@ 
         <!-- vtkSmartPointerBase::vtkSmartPointerBase(vtkObjectBase*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-66'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19003,9 +19033,9 @@ 
         <!-- void vtkSmartPointerBase::Swap(vtkSmartPointerBase&) -->
         <function-decl name='Swap' mangled-name='_ZN19vtkSmartPointerBase4SwapERS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <!-- parameter of type 'vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-561'/>
+          <parameter type-id='type-id-563'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19014,27 +19044,27 @@ 
         <!-- void vtkSmartPointerBase::Register() -->
         <function-decl name='Register' mangled-name='_ZN19vtkSmartPointerBase8RegisterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkBoundingBox -->
-    <class-decl name='vtkBoundingBox' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='30' column='1' id='type-id-564'>
+    <class-decl name='vtkBoundingBox' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='30' column='1' id='type-id-566'>
       <data-member access='protected' layout-offset-in-bits='0'>
         <!-- double vtkBoundingBox::MinPnt[3] -->
-        <var-decl name='MinPnt' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
+        <var-decl name='MinPnt' type-id='type-id-526' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='192'>
         <!-- double vtkBoundingBox::MaxPnt[3] -->
-        <var-decl name='MaxPnt' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
+        <var-decl name='MaxPnt' type-id='type-id-526' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
       </data-member>
       <member-function access='private' constructor='yes'>
         <!-- vtkBoundingBox::vtkBoundingBox() -->
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19043,9 +19073,9 @@ 
         <!-- vtkBoundingBox::vtkBoundingBox(const double*) -->
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'const double*' -->
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-568'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19054,7 +19084,7 @@ 
         <!-- vtkBoundingBox::vtkBoundingBox(double, double, double, double, double, double) -->
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- parameter of type 'double' -->
@@ -19075,9 +19105,9 @@ 
         <!-- vtkBoundingBox::vtkBoundingBox(const vtkBoundingBox&) -->
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'const vtkBoundingBox&' -->
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-569'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19086,20 +19116,20 @@ 
         <!-- vtkBoundingBox& vtkBoundingBox::operator=(const vtkBoundingBox&) -->
         <function-decl name='operator=' mangled-name='_ZN14vtkBoundingBoxaSERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'const vtkBoundingBox&' -->
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-569'/>
           <!-- vtkBoundingBox& -->
-          <return type-id='type-id-568'/>
+          <return type-id='type-id-570'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- int vtkBoundingBox::operator==(const vtkBoundingBox&) -->
         <function-decl name='operator==' mangled-name='_ZNK14vtkBoundingBoxeqERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'const vtkBoundingBox&' -->
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-569'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -19108,9 +19138,9 @@ 
         <!-- int vtkBoundingBox::operator!=(const vtkBoundingBox&) -->
         <function-decl name='operator!=' mangled-name='_ZNK14vtkBoundingBoxneERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'const vtkBoundingBox&' -->
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-569'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -19119,9 +19149,9 @@ 
         <!-- void vtkBoundingBox::SetBounds(const double*) -->
         <function-decl name='SetBounds' mangled-name='_ZN14vtkBoundingBox9SetBoundsEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'const double*' -->
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-568'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19130,7 +19160,7 @@ 
         <!-- void vtkBoundingBox::SetBounds(double, double, double, double, double, double) -->
         <function-decl name='SetBounds' mangled-name='_ZN14vtkBoundingBox9SetBoundsEdddddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- parameter of type 'double' -->
@@ -19151,7 +19181,7 @@ 
         <!-- void vtkBoundingBox::SetMinPoint(double, double, double) -->
         <function-decl name='SetMinPoint' mangled-name='_ZN14vtkBoundingBox11SetMinPointEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- parameter of type 'double' -->
@@ -19166,7 +19196,7 @@ 
         <!-- void vtkBoundingBox::SetMinPoint(double*) -->
         <function-decl name='SetMinPoint' mangled-name='_ZN14vtkBoundingBox11SetMinPointEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- void -->
@@ -19177,7 +19207,7 @@ 
         <!-- void vtkBoundingBox::SetMaxPoint(double, double, double) -->
         <function-decl name='SetMaxPoint' mangled-name='_ZN14vtkBoundingBox11SetMaxPointEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- parameter of type 'double' -->
@@ -19192,7 +19222,7 @@ 
         <!-- void vtkBoundingBox::SetMaxPoint(double*) -->
         <function-decl name='SetMaxPoint' mangled-name='_ZN14vtkBoundingBox11SetMaxPointEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- void -->
@@ -19203,7 +19233,7 @@ 
         <!-- void vtkBoundingBox::AddPoint(double*) -->
         <function-decl name='AddPoint' mangled-name='_ZN14vtkBoundingBox8AddPointEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- void -->
@@ -19214,7 +19244,7 @@ 
         <!-- void vtkBoundingBox::AddPoint(double, double, double) -->
         <function-decl name='AddPoint' mangled-name='_ZN14vtkBoundingBox8AddPointEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- parameter of type 'double' -->
@@ -19229,9 +19259,9 @@ 
         <!-- void vtkBoundingBox::AddBox(const vtkBoundingBox&) -->
         <function-decl name='AddBox' mangled-name='_ZN14vtkBoundingBox6AddBoxERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'const vtkBoundingBox&' -->
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-569'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19240,9 +19270,9 @@ 
         <!-- void vtkBoundingBox::AddBounds(const double*) -->
         <function-decl name='AddBounds' mangled-name='_ZN14vtkBoundingBox9AddBoundsEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'const double*' -->
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-568'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19251,9 +19281,9 @@ 
         <!-- int vtkBoundingBox::IntersectBox(const vtkBoundingBox&) -->
         <function-decl name='IntersectBox' mangled-name='_ZN14vtkBoundingBox12IntersectBoxERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'const vtkBoundingBox&' -->
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-569'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -19262,9 +19292,9 @@ 
         <!-- int vtkBoundingBox::Intersects(const vtkBoundingBox&) -->
         <function-decl name='Intersects' mangled-name='_ZNK14vtkBoundingBox10IntersectsERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'const vtkBoundingBox&' -->
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-569'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -19273,7 +19303,7 @@ 
         <!-- bool vtkBoundingBox::IntersectPlane(double*, double*) -->
         <function-decl name='IntersectPlane' mangled-name='_ZN14vtkBoundingBox14IntersectPlaneEPdS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- parameter of type 'double*' -->
@@ -19286,9 +19316,9 @@ 
         <!-- int vtkBoundingBox::Contains(const vtkBoundingBox&) -->
         <function-decl name='Contains' mangled-name='_ZNK14vtkBoundingBox8ContainsERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'const vtkBoundingBox&' -->
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-569'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -19297,7 +19327,7 @@ 
         <!-- void vtkBoundingBox::GetBounds(double*) -->
         <function-decl name='GetBounds' mangled-name='_ZNK14vtkBoundingBox9GetBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- void -->
@@ -19308,19 +19338,19 @@ 
         <!-- void vtkBoundingBox::GetBounds(double&, double&, double&, double&, double&, double&) -->
         <function-decl name='GetBounds' mangled-name='_ZNK14vtkBoundingBox9GetBoundsERdS0_S0_S0_S0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19329,7 +19359,7 @@ 
         <!-- double vtkBoundingBox::GetBound(int) -->
         <function-decl name='GetBound' mangled-name='_ZNK14vtkBoundingBox8GetBoundEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- double -->
@@ -19340,22 +19370,22 @@ 
         <!-- const double* vtkBoundingBox::GetMinPoint() -->
         <function-decl name='GetMinPoint' mangled-name='_ZNK14vtkBoundingBox11GetMinPointEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- const double* -->
-          <return type-id='type-id-566'/>
+          <return type-id='type-id-568'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkBoundingBox::GetMinPoint(double&, double&, double&) -->
         <function-decl name='GetMinPoint' mangled-name='_ZNK14vtkBoundingBox11GetMinPointERdS0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19364,22 +19394,22 @@ 
         <!-- const double* vtkBoundingBox::GetMaxPoint() -->
         <function-decl name='GetMaxPoint' mangled-name='_ZNK14vtkBoundingBox11GetMaxPointEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- const double* -->
-          <return type-id='type-id-566'/>
+          <return type-id='type-id-568'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkBoundingBox::GetMaxPoint(double&, double&, double&) -->
         <function-decl name='GetMaxPoint' mangled-name='_ZNK14vtkBoundingBox11GetMaxPointERdS0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-531'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19388,7 +19418,7 @@ 
         <!-- int vtkBoundingBox::ContainsPoint(double*) -->
         <function-decl name='ContainsPoint' mangled-name='_ZNK14vtkBoundingBox13ContainsPointEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- int -->
@@ -19399,7 +19429,7 @@ 
         <!-- int vtkBoundingBox::ContainsPoint(double, double, double) -->
         <function-decl name='ContainsPoint' mangled-name='_ZNK14vtkBoundingBox13ContainsPointEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- parameter of type 'double' -->
@@ -19414,7 +19444,7 @@ 
         <!-- void vtkBoundingBox::GetCenter(double*) -->
         <function-decl name='GetCenter' mangled-name='_ZNK14vtkBoundingBox9GetCenterEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- void -->
@@ -19425,7 +19455,7 @@ 
         <!-- void vtkBoundingBox::GetLengths(double*) -->
         <function-decl name='GetLengths' mangled-name='_ZNK14vtkBoundingBox10GetLengthsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- void -->
@@ -19436,7 +19466,7 @@ 
         <!-- double vtkBoundingBox::GetLength(int) -->
         <function-decl name='GetLength' mangled-name='_ZNK14vtkBoundingBox9GetLengthEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- double -->
@@ -19447,7 +19477,7 @@ 
         <!-- double vtkBoundingBox::GetMaxLength() -->
         <function-decl name='GetMaxLength' mangled-name='_ZNK14vtkBoundingBox12GetMaxLengthEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -19456,7 +19486,7 @@ 
         <!-- double vtkBoundingBox::GetDiagonalLength() -->
         <function-decl name='GetDiagonalLength' mangled-name='_ZNK14vtkBoundingBox17GetDiagonalLengthEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -19465,7 +19495,7 @@ 
         <!-- void vtkBoundingBox::Inflate(double) -->
         <function-decl name='Inflate' mangled-name='_ZN14vtkBoundingBox7InflateEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -19476,7 +19506,7 @@ 
         <!-- int vtkBoundingBox::IsValid() -->
         <function-decl name='IsValid' mangled-name='_ZNK14vtkBoundingBox7IsValidEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -19485,7 +19515,7 @@ 
         <!-- int vtkBoundingBox::IsValid() -->
         <function-decl name='IsValid' mangled-name='_ZN14vtkBoundingBox7IsValidEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const double*' -->
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-568'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -19494,7 +19524,7 @@ 
         <!-- void vtkBoundingBox::Reset() -->
         <function-decl name='Reset' mangled-name='_ZN14vtkBoundingBox5ResetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19503,7 +19533,7 @@ 
         <!-- void vtkBoundingBox::Scale(double*) -->
         <function-decl name='Scale' mangled-name='_ZN14vtkBoundingBox5ScaleEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='179' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-194'/>
           <!-- void -->
@@ -19514,7 +19544,7 @@ 
         <!-- void vtkBoundingBox::Scale(double, double, double) -->
         <function-decl name='Scale' mangled-name='_ZN14vtkBoundingBox5ScaleEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- parameter of type 'double' -->
@@ -19527,23 +19557,23 @@ 
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkOpenGLLightMonitor> -->
-    <class-decl name='vtkSmartPointer&lt;vtkOpenGLLightMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-554'>
+    <class-decl name='vtkSmartPointer&lt;vtkOpenGLLightMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-556'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkOpenGLLightMonitor* vtkSmartPointer<vtkOpenGLLightMonitor>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkOpenGLLightMonitor*' -->
-          <parameter type-id='type-id-570'/>
+          <parameter type-id='type-id-572'/>
           <!-- vtkOpenGLLightMonitor* -->
-          <return type-id='type-id-570'/>
+          <return type-id='type-id-572'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19552,9 +19582,9 @@ 
         <!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::vtkSmartPointer(vtkOpenGLLightMonitor*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLLightMonitor*' -->
-          <parameter type-id='type-id-570'/>
+          <parameter type-id='type-id-572'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19563,65 +19593,65 @@ 
         <!-- vtkSmartPointer<vtkOpenGLLightMonitor>& vtkSmartPointer<vtkOpenGLLightMonitor>::operator=(vtkOpenGLLightMonitor*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLLightMonitor*' -->
-          <parameter type-id='type-id-570'/>
+          <parameter type-id='type-id-572'/>
           <!-- vtkSmartPointer<vtkOpenGLLightMonitor>& -->
-          <return type-id='type-id-572'/>
+          <return type-id='type-id-574'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLLightMonitor* vtkSmartPointer<vtkOpenGLLightMonitor>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
           <!-- vtkOpenGLLightMonitor* -->
-          <return type-id='type-id-570'/>
+          <return type-id='type-id-572'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLLightMonitor* vtkSmartPointer<vtkOpenGLLightMonitor>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
           <!-- vtkOpenGLLightMonitor* -->
-          <return type-id='type-id-570'/>
+          <return type-id='type-id-572'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLLightMonitor* vtkSmartPointer<vtkOpenGLLightMonitor>::operator vtkOpenGLLightMonitor*() -->
         <function-decl name='operator vtkOpenGLLightMonitor*' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
           <!-- vtkOpenGLLightMonitor* -->
-          <return type-id='type-id-570'/>
+          <return type-id='type-id-572'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLLightMonitor& vtkSmartPointer<vtkOpenGLLightMonitor>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
           <!-- vtkOpenGLLightMonitor& -->
-          <return type-id='type-id-574'/>
+          <return type-id='type-id-576'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLLightMonitor* vtkSmartPointer<vtkOpenGLLightMonitor>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
           <!-- vtkOpenGLLightMonitor* -->
-          <return type-id='type-id-570'/>
+          <return type-id='type-id-572'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::TakeReference(vtkOpenGLLightMonitor*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLLightMonitor*' -->
-          <parameter type-id='type-id-570'/>
+          <parameter type-id='type-id-572'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19630,36 +19660,36 @@ 
         <!-- vtkSmartPointer<vtkOpenGLLightMonitor> vtkSmartPointer<vtkOpenGLLightMonitor>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkOpenGLLightMonitor> -->
-          <return type-id='type-id-554'/>
+          <return type-id='type-id-556'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkOpenGLLightMonitor> vtkSmartPointer<vtkOpenGLLightMonitor>::NewInstance() -->
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkOpenGLLightMonitor*' -->
-          <parameter type-id='type-id-570'/>
+          <parameter type-id='type-id-572'/>
           <!-- class vtkSmartPointer<vtkOpenGLLightMonitor> -->
-          <return type-id='type-id-554'/>
+          <return type-id='type-id-556'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkOpenGLLightMonitor> vtkSmartPointer<vtkOpenGLLightMonitor>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkOpenGLLightMonitor*' -->
-          <parameter type-id='type-id-570'/>
+          <parameter type-id='type-id-572'/>
           <!-- class vtkSmartPointer<vtkOpenGLLightMonitor> -->
-          <return type-id='type-id-554'/>
+          <return type-id='type-id-556'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::vtkSmartPointer(vtkOpenGLLightMonitor*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLLightMonitor*' -->
-          <parameter type-id='type-id-570'/>
+          <parameter type-id='type-id-572'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19668,9 +19698,9 @@ 
         <!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19679,30 +19709,30 @@ 
         <!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
-    <class-decl name='vtkSmartPointer&lt;vtkOpenGLModelViewProjectionMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-510'>
+    <class-decl name='vtkSmartPointer&lt;vtkOpenGLModelViewProjectionMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-512'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkOpenGLModelViewProjectionMonitor* vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
-          <parameter type-id='type-id-575'/>
+          <parameter type-id='type-id-577'/>
           <!-- vtkOpenGLModelViewProjectionMonitor* -->
-          <return type-id='type-id-575'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-576' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19711,9 +19741,9 @@ 
         <!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::vtkSmartPointer(vtkOpenGLModelViewProjectionMonitor*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-576' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
-          <parameter type-id='type-id-575'/>
+          <parameter type-id='type-id-577'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19722,65 +19752,65 @@ 
         <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>& vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::operator=(vtkOpenGLModelViewProjectionMonitor*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-576' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
-          <parameter type-id='type-id-575'/>
+          <parameter type-id='type-id-577'/>
           <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>& -->
-          <return type-id='type-id-577'/>
+          <return type-id='type-id-579'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLModelViewProjectionMonitor* vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
           <!-- vtkOpenGLModelViewProjectionMonitor* -->
-          <return type-id='type-id-575'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLModelViewProjectionMonitor* vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
           <!-- vtkOpenGLModelViewProjectionMonitor* -->
-          <return type-id='type-id-575'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLModelViewProjectionMonitor* vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::operator vtkOpenGLModelViewProjectionMonitor*() -->
         <function-decl name='operator vtkOpenGLModelViewProjectionMonitor*' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
           <!-- vtkOpenGLModelViewProjectionMonitor* -->
-          <return type-id='type-id-575'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLModelViewProjectionMonitor& vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
           <!-- vtkOpenGLModelViewProjectionMonitor& -->
-          <return type-id='type-id-579'/>
+          <return type-id='type-id-581'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLModelViewProjectionMonitor* vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
           <!-- vtkOpenGLModelViewProjectionMonitor* -->
-          <return type-id='type-id-575'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::TakeReference(vtkOpenGLModelViewProjectionMonitor*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-576' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
-          <parameter type-id='type-id-575'/>
+          <parameter type-id='type-id-577'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19789,36 +19819,36 @@ 
         <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
-          <return type-id='type-id-510'/>
+          <return type-id='type-id-512'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::NewInstance() -->
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
-          <parameter type-id='type-id-575'/>
+          <parameter type-id='type-id-577'/>
           <!-- class vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
-          <return type-id='type-id-510'/>
+          <return type-id='type-id-512'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
-          <parameter type-id='type-id-575'/>
+          <parameter type-id='type-id-577'/>
           <!-- class vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
-          <return type-id='type-id-510'/>
+          <return type-id='type-id-512'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::vtkSmartPointer(vtkOpenGLModelViewProjectionMonitor*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-576' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
-          <parameter type-id='type-id-575'/>
+          <parameter type-id='type-id-577'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19827,9 +19857,9 @@ 
         <!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-576' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19838,30 +19868,30 @@ 
         <!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkBackgroundColorMonitor> -->
-    <class-decl name='vtkSmartPointer&lt;vtkBackgroundColorMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-511'>
+    <class-decl name='vtkSmartPointer&lt;vtkBackgroundColorMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-513'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkBackgroundColorMonitor* vtkSmartPointer<vtkBackgroundColorMonitor>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkBackgroundColorMonitor*' -->
-          <parameter type-id='type-id-580'/>
+          <parameter type-id='type-id-582'/>
           <!-- vtkBackgroundColorMonitor* -->
-          <return type-id='type-id-580'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-581' is-artificial='yes'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19870,9 +19900,9 @@ 
         <!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::vtkSmartPointer(vtkBackgroundColorMonitor*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-581' is-artificial='yes'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
           <!-- parameter of type 'vtkBackgroundColorMonitor*' -->
-          <parameter type-id='type-id-580'/>
+          <parameter type-id='type-id-582'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19881,65 +19911,65 @@ 
         <!-- vtkSmartPointer<vtkBackgroundColorMonitor>& vtkSmartPointer<vtkBackgroundColorMonitor>::operator=(vtkBackgroundColorMonitor*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-581' is-artificial='yes'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
           <!-- parameter of type 'vtkBackgroundColorMonitor*' -->
-          <parameter type-id='type-id-580'/>
+          <parameter type-id='type-id-582'/>
           <!-- vtkSmartPointer<vtkBackgroundColorMonitor>& -->
-          <return type-id='type-id-582'/>
+          <return type-id='type-id-584'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkBackgroundColorMonitor* vtkSmartPointer<vtkBackgroundColorMonitor>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
           <!-- vtkBackgroundColorMonitor* -->
-          <return type-id='type-id-580'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkBackgroundColorMonitor* vtkSmartPointer<vtkBackgroundColorMonitor>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
           <!-- vtkBackgroundColorMonitor* -->
-          <return type-id='type-id-580'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkBackgroundColorMonitor* vtkSmartPointer<vtkBackgroundColorMonitor>::operator vtkBackgroundColorMonitor*() -->
         <function-decl name='operator vtkBackgroundColorMonitor*' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
           <!-- vtkBackgroundColorMonitor* -->
-          <return type-id='type-id-580'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkBackgroundColorMonitor& vtkSmartPointer<vtkBackgroundColorMonitor>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
           <!-- vtkBackgroundColorMonitor& -->
-          <return type-id='type-id-584'/>
+          <return type-id='type-id-586'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkBackgroundColorMonitor* vtkSmartPointer<vtkBackgroundColorMonitor>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
           <!-- vtkBackgroundColorMonitor* -->
-          <return type-id='type-id-580'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::TakeReference(vtkBackgroundColorMonitor*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-581' is-artificial='yes'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
           <!-- parameter of type 'vtkBackgroundColorMonitor*' -->
-          <parameter type-id='type-id-580'/>
+          <parameter type-id='type-id-582'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19948,36 +19978,36 @@ 
         <!-- vtkSmartPointer<vtkBackgroundColorMonitor> vtkSmartPointer<vtkBackgroundColorMonitor>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkBackgroundColorMonitor> -->
-          <return type-id='type-id-511'/>
+          <return type-id='type-id-513'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkBackgroundColorMonitor> vtkSmartPointer<vtkBackgroundColorMonitor>::NewInstance() -->
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkBackgroundColorMonitor*' -->
-          <parameter type-id='type-id-580'/>
+          <parameter type-id='type-id-582'/>
           <!-- class vtkSmartPointer<vtkBackgroundColorMonitor> -->
-          <return type-id='type-id-511'/>
+          <return type-id='type-id-513'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkBackgroundColorMonitor> vtkSmartPointer<vtkBackgroundColorMonitor>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkBackgroundColorMonitor*' -->
-          <parameter type-id='type-id-580'/>
+          <parameter type-id='type-id-582'/>
           <!-- class vtkSmartPointer<vtkBackgroundColorMonitor> -->
-          <return type-id='type-id-511'/>
+          <return type-id='type-id-513'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::vtkSmartPointer(vtkBackgroundColorMonitor*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-581' is-artificial='yes'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
           <!-- parameter of type 'vtkBackgroundColorMonitor*' -->
-          <parameter type-id='type-id-580'/>
+          <parameter type-id='type-id-582'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19986,9 +20016,9 @@ 
         <!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-581' is-artificial='yes'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -19997,21 +20027,21 @@ 
         <!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkWeakPointer<vtkOpenGLRenderWindow> -->
-    <class-decl name='vtkWeakPointer&lt;vtkOpenGLRenderWindow&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-512'>
+    <class-decl name='vtkWeakPointer&lt;vtkOpenGLRenderWindow&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-514'>
     <!-- class vtkWeakPointerBase -->
       <base-class access='public' layout-offset-in-bits='0' type-id='type-id-75'/>
       <member-function access='private'>
         <!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer() -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20020,7 +20050,7 @@ 
         <!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer(vtkOpenGLRenderWindow*) -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLRenderWindow*' -->
           <parameter type-id='type-id-246'/>
           <!-- void -->
@@ -20031,7 +20061,7 @@ 
         <!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer(const vtkWeakPointerBase&) -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <!-- parameter of type 'const vtkWeakPointerBase&' -->
           <parameter type-id='type-id-78'/>
           <!-- void -->
@@ -20042,29 +20072,29 @@ 
         <!-- vtkWeakPointer<vtkOpenGLRenderWindow>& vtkWeakPointer<vtkOpenGLRenderWindow>::operator=(vtkOpenGLRenderWindow*) -->
         <function-decl name='operator=' mangled-name='_ZN14vtkWeakPointerI21vtkOpenGLRenderWindowEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLRenderWindow*' -->
           <parameter type-id='type-id-246'/>
           <!-- vtkWeakPointer<vtkOpenGLRenderWindow>& -->
-          <return type-id='type-id-586'/>
+          <return type-id='type-id-588'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkWeakPointer<vtkOpenGLRenderWindow>& vtkWeakPointer<vtkOpenGLRenderWindow>::operator=(const vtkWeakPointerBase&) -->
         <function-decl name='operator=' mangled-name='_ZN14vtkWeakPointerI21vtkOpenGLRenderWindowEaSERK18vtkWeakPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <!-- parameter of type 'const vtkWeakPointerBase&' -->
           <parameter type-id='type-id-78'/>
           <!-- vtkWeakPointer<vtkOpenGLRenderWindow>& -->
-          <return type-id='type-id-586'/>
+          <return type-id='type-id-588'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLRenderWindow* vtkWeakPointer<vtkOpenGLRenderWindow>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-587' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <!-- vtkOpenGLRenderWindow* -->
           <return type-id='type-id-246'/>
         </function-decl>
@@ -20073,7 +20103,7 @@ 
         <!-- vtkOpenGLRenderWindow* vtkWeakPointer<vtkOpenGLRenderWindow>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-587' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <!-- vtkOpenGLRenderWindow* -->
           <return type-id='type-id-246'/>
         </function-decl>
@@ -20082,7 +20112,7 @@ 
         <!-- vtkOpenGLRenderWindow* vtkWeakPointer<vtkOpenGLRenderWindow>::operator vtkOpenGLRenderWindow*() -->
         <function-decl name='operator vtkOpenGLRenderWindow*' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-587' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <!-- vtkOpenGLRenderWindow* -->
           <return type-id='type-id-246'/>
         </function-decl>
@@ -20091,16 +20121,16 @@ 
         <!-- vtkOpenGLRenderWindow& vtkWeakPointer<vtkOpenGLRenderWindow>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-587' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <!-- vtkOpenGLRenderWindow& -->
-          <return type-id='type-id-588'/>
+          <return type-id='type-id-590'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkOpenGLRenderWindow* vtkWeakPointer<vtkOpenGLRenderWindow>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-587' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <!-- vtkOpenGLRenderWindow* -->
           <return type-id='type-id-246'/>
         </function-decl>
@@ -20109,7 +20139,7 @@ 
         <!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer(vtkOpenGLRenderWindow*, const vtkWeakPointerBase::NoReference&) -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLRenderWindow*' -->
           <parameter type-id='type-id-246'/>
           <!-- parameter of type 'const vtkWeakPointerBase::NoReference&' -->
@@ -20122,7 +20152,7 @@ 
         <!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::TakeReference(const vtkWeakPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN14vtkWeakPointerI21vtkOpenGLRenderWindowE13TakeReferenceERK18vtkWeakPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <!-- parameter of type 'const vtkWeakPointerBase&' -->
           <parameter type-id='type-id-78'/>
           <!-- void -->
@@ -20140,9 +20170,9 @@ 
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkTextureObject> -->
-    <class-decl name='vtkSmartPointer&lt;vtkTextureObject&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-513'>
+    <class-decl name='vtkSmartPointer&lt;vtkTextureObject&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-515'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkTextureObject* vtkSmartPointer<vtkTextureObject>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -20156,7 +20186,7 @@ 
         <!-- void vtkSmartPointer<vtkTextureObject>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20165,7 +20195,7 @@ 
         <!-- void vtkSmartPointer<vtkTextureObject>::vtkSmartPointer(vtkTextureObject*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <!-- parameter of type 'vtkTextureObject*' -->
           <parameter type-id='type-id-325'/>
           <!-- void -->
@@ -20176,18 +20206,18 @@ 
         <!-- vtkSmartPointer<vtkTextureObject>& vtkSmartPointer<vtkTextureObject>::operator=(vtkTextureObject*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <!-- parameter of type 'vtkTextureObject*' -->
           <parameter type-id='type-id-325'/>
           <!-- vtkSmartPointer<vtkTextureObject>& -->
-          <return type-id='type-id-522'/>
+          <return type-id='type-id-524'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTextureObject* vtkSmartPointer<vtkTextureObject>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <!-- vtkTextureObject* -->
           <return type-id='type-id-325'/>
         </function-decl>
@@ -20196,7 +20226,7 @@ 
         <!-- vtkTextureObject* vtkSmartPointer<vtkTextureObject>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <!-- vtkTextureObject* -->
           <return type-id='type-id-325'/>
         </function-decl>
@@ -20205,7 +20235,7 @@ 
         <!-- vtkTextureObject* vtkSmartPointer<vtkTextureObject>::operator vtkTextureObject*() -->
         <function-decl name='operator vtkTextureObject*' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <!-- vtkTextureObject* -->
           <return type-id='type-id-325'/>
         </function-decl>
@@ -20214,16 +20244,16 @@ 
         <!-- vtkTextureObject& vtkSmartPointer<vtkTextureObject>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <!-- vtkTextureObject& -->
-          <return type-id='type-id-591'/>
+          <return type-id='type-id-593'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTextureObject* vtkSmartPointer<vtkTextureObject>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <!-- vtkTextureObject* -->
           <return type-id='type-id-325'/>
         </function-decl>
@@ -20232,7 +20262,7 @@ 
         <!-- void vtkSmartPointer<vtkTextureObject>::TakeReference(vtkTextureObject*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <!-- parameter of type 'vtkTextureObject*' -->
           <parameter type-id='type-id-325'/>
           <!-- void -->
@@ -20243,7 +20273,7 @@ 
         <!-- vtkSmartPointer<vtkTextureObject> vtkSmartPointer<vtkTextureObject>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkTextureObject> -->
-          <return type-id='type-id-513'/>
+          <return type-id='type-id-515'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -20252,7 +20282,7 @@ 
           <!-- parameter of type 'vtkTextureObject*' -->
           <parameter type-id='type-id-325'/>
           <!-- class vtkSmartPointer<vtkTextureObject> -->
-          <return type-id='type-id-513'/>
+          <return type-id='type-id-515'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -20261,18 +20291,18 @@ 
           <!-- parameter of type 'vtkTextureObject*' -->
           <parameter type-id='type-id-325'/>
           <!-- class vtkSmartPointer<vtkTextureObject> -->
-          <return type-id='type-id-513'/>
+          <return type-id='type-id-515'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkTextureObject>::vtkSmartPointer(vtkTextureObject*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <!-- parameter of type 'vtkTextureObject*' -->
           <parameter type-id='type-id-325'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20281,9 +20311,9 @@ 
         <!-- void vtkSmartPointer<vtkTextureObject>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20292,16 +20322,16 @@ 
         <!-- void vtkSmartPointer<vtkTextureObject>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkImageData> -->
-    <class-decl name='vtkSmartPointer&lt;vtkImageData&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-514'>
+    <class-decl name='vtkSmartPointer&lt;vtkImageData&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-516'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkImageData* vtkSmartPointer<vtkImageData>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -20315,7 +20345,7 @@ 
         <!-- void vtkSmartPointer<vtkImageData>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20324,7 +20354,7 @@ 
         <!-- void vtkSmartPointer<vtkImageData>::vtkSmartPointer(vtkImageData*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-240'/>
           <!-- void -->
@@ -20335,18 +20365,18 @@ 
         <!-- vtkSmartPointer<vtkImageData>& vtkSmartPointer<vtkImageData>::operator=(vtkImageData*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-240'/>
           <!-- vtkSmartPointer<vtkImageData>& -->
-          <return type-id='type-id-593'/>
+          <return type-id='type-id-595'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkImageData* vtkSmartPointer<vtkImageData>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <!-- vtkImageData* -->
           <return type-id='type-id-240'/>
         </function-decl>
@@ -20355,7 +20385,7 @@ 
         <!-- vtkImageData* vtkSmartPointer<vtkImageData>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <!-- vtkImageData* -->
           <return type-id='type-id-240'/>
         </function-decl>
@@ -20364,7 +20394,7 @@ 
         <!-- vtkImageData* vtkSmartPointer<vtkImageData>::operator vtkImageData*() -->
         <function-decl name='operator vtkImageData*' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <!-- vtkImageData* -->
           <return type-id='type-id-240'/>
         </function-decl>
@@ -20373,16 +20403,16 @@ 
         <!-- vtkImageData& vtkSmartPointer<vtkImageData>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <!-- vtkImageData& -->
-          <return type-id='type-id-595'/>
+          <return type-id='type-id-597'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkImageData* vtkSmartPointer<vtkImageData>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <!-- vtkImageData* -->
           <return type-id='type-id-240'/>
         </function-decl>
@@ -20391,7 +20421,7 @@ 
         <!-- void vtkSmartPointer<vtkImageData>::TakeReference(vtkImageData*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-240'/>
           <!-- void -->
@@ -20402,7 +20432,7 @@ 
         <!-- vtkSmartPointer<vtkImageData> vtkSmartPointer<vtkImageData>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkImageData> -->
-          <return type-id='type-id-514'/>
+          <return type-id='type-id-516'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -20411,7 +20441,7 @@ 
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-240'/>
           <!-- class vtkSmartPointer<vtkImageData> -->
-          <return type-id='type-id-514'/>
+          <return type-id='type-id-516'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -20420,18 +20450,18 @@ 
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-240'/>
           <!-- class vtkSmartPointer<vtkImageData> -->
-          <return type-id='type-id-514'/>
+          <return type-id='type-id-516'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkImageData>::vtkSmartPointer(vtkImageData*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-240'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20440,9 +20470,9 @@ 
         <!-- void vtkSmartPointer<vtkImageData>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20451,16 +20481,16 @@ 
         <!-- void vtkSmartPointer<vtkImageData>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkFrameBufferObject2> -->
-    <class-decl name='vtkSmartPointer&lt;vtkFrameBufferObject2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-515'>
+    <class-decl name='vtkSmartPointer&lt;vtkFrameBufferObject2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-517'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkFrameBufferObject2* vtkSmartPointer<vtkFrameBufferObject2>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -20474,7 +20504,7 @@ 
         <!-- void vtkSmartPointer<vtkFrameBufferObject2>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20483,7 +20513,7 @@ 
         <!-- void vtkSmartPointer<vtkFrameBufferObject2>::vtkSmartPointer(vtkFrameBufferObject2*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
           <parameter type-id='type-id-322'/>
           <!-- void -->
@@ -20494,18 +20524,18 @@ 
         <!-- vtkSmartPointer<vtkFrameBufferObject2>& vtkSmartPointer<vtkFrameBufferObject2>::operator=(vtkFrameBufferObject2*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2EaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
           <parameter type-id='type-id-322'/>
           <!-- vtkSmartPointer<vtkFrameBufferObject2>& -->
-          <return type-id='type-id-597'/>
+          <return type-id='type-id-599'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkFrameBufferObject2* vtkSmartPointer<vtkFrameBufferObject2>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2E10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
           <!-- vtkFrameBufferObject2* -->
           <return type-id='type-id-322'/>
         </function-decl>
@@ -20514,7 +20544,7 @@ 
         <!-- vtkFrameBufferObject2* vtkSmartPointer<vtkFrameBufferObject2>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2E3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
           <!-- vtkFrameBufferObject2* -->
           <return type-id='type-id-322'/>
         </function-decl>
@@ -20523,7 +20553,7 @@ 
         <!-- vtkFrameBufferObject2* vtkSmartPointer<vtkFrameBufferObject2>::operator vtkFrameBufferObject2*() -->
         <function-decl name='operator vtkFrameBufferObject2*' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2EcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
           <!-- vtkFrameBufferObject2* -->
           <return type-id='type-id-322'/>
         </function-decl>
@@ -20532,16 +20562,16 @@ 
         <!-- vtkFrameBufferObject2& vtkSmartPointer<vtkFrameBufferObject2>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2EdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
           <!-- vtkFrameBufferObject2& -->
-          <return type-id='type-id-599'/>
+          <return type-id='type-id-601'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkFrameBufferObject2* vtkSmartPointer<vtkFrameBufferObject2>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2EptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
           <!-- vtkFrameBufferObject2* -->
           <return type-id='type-id-322'/>
         </function-decl>
@@ -20550,7 +20580,7 @@ 
         <!-- void vtkSmartPointer<vtkFrameBufferObject2>::TakeReference(vtkFrameBufferObject2*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
           <parameter type-id='type-id-322'/>
           <!-- void -->
@@ -20561,7 +20591,7 @@ 
         <!-- vtkSmartPointer<vtkFrameBufferObject2> vtkSmartPointer<vtkFrameBufferObject2>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkFrameBufferObject2> -->
-          <return type-id='type-id-515'/>
+          <return type-id='type-id-517'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -20570,7 +20600,7 @@ 
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
           <parameter type-id='type-id-322'/>
           <!-- class vtkSmartPointer<vtkFrameBufferObject2> -->
-          <return type-id='type-id-515'/>
+          <return type-id='type-id-517'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -20579,18 +20609,18 @@ 
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
           <parameter type-id='type-id-322'/>
           <!-- class vtkSmartPointer<vtkFrameBufferObject2> -->
-          <return type-id='type-id-515'/>
+          <return type-id='type-id-517'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkFrameBufferObject2>::vtkSmartPointer(vtkFrameBufferObject2*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
           <parameter type-id='type-id-322'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20599,9 +20629,9 @@ 
         <!-- void vtkSmartPointer<vtkFrameBufferObject2>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20610,16 +20640,16 @@ 
         <!-- void vtkSmartPointer<vtkFrameBufferObject2>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkShaderProgram2> -->
-    <class-decl name='vtkSmartPointer&lt;vtkShaderProgram2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-516'>
+    <class-decl name='vtkSmartPointer&lt;vtkShaderProgram2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-518'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkShaderProgram2* vtkSmartPointer<vtkShaderProgram2>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -20633,7 +20663,7 @@ 
         <!-- void vtkSmartPointer<vtkShaderProgram2>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20642,7 +20672,7 @@ 
         <!-- void vtkSmartPointer<vtkShaderProgram2>::vtkSmartPointer(vtkShaderProgram2*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-110'/>
           <!-- void -->
@@ -20653,18 +20683,18 @@ 
         <!-- vtkSmartPointer<vtkShaderProgram2>& vtkSmartPointer<vtkShaderProgram2>::operator=(vtkShaderProgram2*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2EaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-110'/>
           <!-- vtkSmartPointer<vtkShaderProgram2>& -->
-          <return type-id='type-id-601'/>
+          <return type-id='type-id-603'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkShaderProgram2* vtkSmartPointer<vtkShaderProgram2>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2E10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <!-- vtkShaderProgram2* -->
           <return type-id='type-id-110'/>
         </function-decl>
@@ -20673,7 +20703,7 @@ 
         <!-- vtkShaderProgram2* vtkSmartPointer<vtkShaderProgram2>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2E3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <!-- vtkShaderProgram2* -->
           <return type-id='type-id-110'/>
         </function-decl>
@@ -20682,7 +20712,7 @@ 
         <!-- vtkShaderProgram2* vtkSmartPointer<vtkShaderProgram2>::operator vtkShaderProgram2*() -->
         <function-decl name='operator vtkShaderProgram2*' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2EcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <!-- vtkShaderProgram2* -->
           <return type-id='type-id-110'/>
         </function-decl>
@@ -20691,16 +20721,16 @@ 
         <!-- vtkShaderProgram2& vtkSmartPointer<vtkShaderProgram2>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2EdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <!-- vtkShaderProgram2& -->
-          <return type-id='type-id-603'/>
+          <return type-id='type-id-605'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkShaderProgram2* vtkSmartPointer<vtkShaderProgram2>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2EptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <!-- vtkShaderProgram2* -->
           <return type-id='type-id-110'/>
         </function-decl>
@@ -20709,7 +20739,7 @@ 
         <!-- void vtkSmartPointer<vtkShaderProgram2>::TakeReference(vtkShaderProgram2*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-110'/>
           <!-- void -->
@@ -20720,7 +20750,7 @@ 
         <!-- vtkSmartPointer<vtkShaderProgram2> vtkSmartPointer<vtkShaderProgram2>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkShaderProgram2> -->
-          <return type-id='type-id-516'/>
+          <return type-id='type-id-518'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -20729,7 +20759,7 @@ 
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-110'/>
           <!-- class vtkSmartPointer<vtkShaderProgram2> -->
-          <return type-id='type-id-516'/>
+          <return type-id='type-id-518'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -20738,18 +20768,18 @@ 
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-110'/>
           <!-- class vtkSmartPointer<vtkShaderProgram2> -->
-          <return type-id='type-id-516'/>
+          <return type-id='type-id-518'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkShaderProgram2>::vtkSmartPointer(vtkShaderProgram2*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-110'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20758,9 +20788,9 @@ 
         <!-- void vtkSmartPointer<vtkShaderProgram2>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20769,30 +20799,30 @@ 
         <!-- void vtkSmartPointer<vtkShaderProgram2>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkLightingHelper> -->
-    <class-decl name='vtkSmartPointer&lt;vtkLightingHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-517'>
+    <class-decl name='vtkSmartPointer&lt;vtkLightingHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-519'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkLightingHelper* vtkSmartPointer<vtkLightingHelper>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-604'/>
+          <parameter type-id='type-id-606'/>
           <!-- vtkLightingHelper* -->
-          <return type-id='type-id-604'/>
+          <return type-id='type-id-606'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkLightingHelper>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20801,9 +20831,9 @@ 
         <!-- void vtkSmartPointer<vtkLightingHelper>::vtkSmartPointer(vtkLightingHelper*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
           <!-- parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-604'/>
+          <parameter type-id='type-id-606'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20812,65 +20842,65 @@ 
         <!-- vtkSmartPointer<vtkLightingHelper>& vtkSmartPointer<vtkLightingHelper>::operator=(vtkLightingHelper*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
           <!-- parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-604'/>
+          <parameter type-id='type-id-606'/>
           <!-- vtkSmartPointer<vtkLightingHelper>& -->
-          <return type-id='type-id-606'/>
+          <return type-id='type-id-608'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkLightingHelper* vtkSmartPointer<vtkLightingHelper>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-607' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <!-- vtkLightingHelper* -->
-          <return type-id='type-id-604'/>
+          <return type-id='type-id-606'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkLightingHelper* vtkSmartPointer<vtkLightingHelper>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-607' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <!-- vtkLightingHelper* -->
-          <return type-id='type-id-604'/>
+          <return type-id='type-id-606'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkLightingHelper* vtkSmartPointer<vtkLightingHelper>::operator vtkLightingHelper*() -->
         <function-decl name='operator vtkLightingHelper*' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-607' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <!-- vtkLightingHelper* -->
-          <return type-id='type-id-604'/>
+          <return type-id='type-id-606'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkLightingHelper& vtkSmartPointer<vtkLightingHelper>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-607' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <!-- vtkLightingHelper& -->
-          <return type-id='type-id-608'/>
+          <return type-id='type-id-610'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkLightingHelper* vtkSmartPointer<vtkLightingHelper>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-607' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <!-- vtkLightingHelper* -->
-          <return type-id='type-id-604'/>
+          <return type-id='type-id-606'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkLightingHelper>::TakeReference(vtkLightingHelper*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
           <!-- parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-604'/>
+          <parameter type-id='type-id-606'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20879,36 +20909,36 @@ 
         <!-- vtkSmartPointer<vtkLightingHelper> vtkSmartPointer<vtkLightingHelper>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkLightingHelper> -->
-          <return type-id='type-id-517'/>
+          <return type-id='type-id-519'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkLightingHelper> vtkSmartPointer<vtkLightingHelper>::NewInstance() -->
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-604'/>
+          <parameter type-id='type-id-606'/>
           <!-- class vtkSmartPointer<vtkLightingHelper> -->
-          <return type-id='type-id-517'/>
+          <return type-id='type-id-519'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkLightingHelper> vtkSmartPointer<vtkLightingHelper>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-604'/>
+          <parameter type-id='type-id-606'/>
           <!-- class vtkSmartPointer<vtkLightingHelper> -->
-          <return type-id='type-id-517'/>
+          <return type-id='type-id-519'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkLightingHelper>::vtkSmartPointer(vtkLightingHelper*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
           <!-- parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-604'/>
+          <parameter type-id='type-id-606'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20917,9 +20947,9 @@ 
         <!-- void vtkSmartPointer<vtkLightingHelper>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20928,30 +20958,30 @@ 
         <!-- void vtkSmartPointer<vtkLightingHelper>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkColorMaterialHelper> -->
-    <class-decl name='vtkSmartPointer&lt;vtkColorMaterialHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-518'>
+    <class-decl name='vtkSmartPointer&lt;vtkColorMaterialHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-520'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkColorMaterialHelper* vtkSmartPointer<vtkColorMaterialHelper>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkColorMaterialHelper*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-611'/>
           <!-- vtkColorMaterialHelper* -->
-          <return type-id='type-id-609'/>
+          <return type-id='type-id-611'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkColorMaterialHelper>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-610' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20960,9 +20990,9 @@ 
         <!-- void vtkSmartPointer<vtkColorMaterialHelper>::vtkSmartPointer(vtkColorMaterialHelper*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-610' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <!-- parameter of type 'vtkColorMaterialHelper*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-611'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -20971,65 +21001,65 @@ 
         <!-- vtkSmartPointer<vtkColorMaterialHelper>& vtkSmartPointer<vtkColorMaterialHelper>::operator=(vtkColorMaterialHelper*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-610' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <!-- parameter of type 'vtkColorMaterialHelper*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-611'/>
           <!-- vtkSmartPointer<vtkColorMaterialHelper>& -->
-          <return type-id='type-id-611'/>
+          <return type-id='type-id-613'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkColorMaterialHelper* vtkSmartPointer<vtkColorMaterialHelper>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-614' is-artificial='yes'/>
           <!-- vtkColorMaterialHelper* -->
-          <return type-id='type-id-609'/>
+          <return type-id='type-id-611'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkColorMaterialHelper* vtkSmartPointer<vtkColorMaterialHelper>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-614' is-artificial='yes'/>
           <!-- vtkColorMaterialHelper* -->
-          <return type-id='type-id-609'/>
+          <return type-id='type-id-611'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkColorMaterialHelper* vtkSmartPointer<vtkColorMaterialHelper>::operator vtkColorMaterialHelper*() -->
         <function-decl name='operator vtkColorMaterialHelper*' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-614' is-artificial='yes'/>
           <!-- vtkColorMaterialHelper* -->
-          <return type-id='type-id-609'/>
+          <return type-id='type-id-611'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkColorMaterialHelper& vtkSmartPointer<vtkColorMaterialHelper>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-614' is-artificial='yes'/>
           <!-- vtkColorMaterialHelper& -->
-          <return type-id='type-id-613'/>
+          <return type-id='type-id-615'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkColorMaterialHelper* vtkSmartPointer<vtkColorMaterialHelper>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-614' is-artificial='yes'/>
           <!-- vtkColorMaterialHelper* -->
-          <return type-id='type-id-609'/>
+          <return type-id='type-id-611'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkColorMaterialHelper>::TakeReference(vtkColorMaterialHelper*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-610' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <!-- parameter of type 'vtkColorMaterialHelper*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-611'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21038,36 +21068,36 @@ 
         <!-- vtkSmartPointer<vtkColorMaterialHelper> vtkSmartPointer<vtkColorMaterialHelper>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkColorMaterialHelper> -->
-          <return type-id='type-id-518'/>
+          <return type-id='type-id-520'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkColorMaterialHelper> vtkSmartPointer<vtkColorMaterialHelper>::NewInstance() -->
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkColorMaterialHelper*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-611'/>
           <!-- class vtkSmartPointer<vtkColorMaterialHelper> -->
-          <return type-id='type-id-518'/>
+          <return type-id='type-id-520'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkColorMaterialHelper> vtkSmartPointer<vtkColorMaterialHelper>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkColorMaterialHelper*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-611'/>
           <!-- class vtkSmartPointer<vtkColorMaterialHelper> -->
-          <return type-id='type-id-518'/>
+          <return type-id='type-id-520'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkColorMaterialHelper>::vtkSmartPointer(vtkColorMaterialHelper*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-610' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <!-- parameter of type 'vtkColorMaterialHelper*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-611'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21076,9 +21106,9 @@ 
         <!-- void vtkSmartPointer<vtkColorMaterialHelper>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-610' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21087,16 +21117,16 @@ 
         <!-- void vtkSmartPointer<vtkColorMaterialHelper>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkSurfaceLICComposite> -->
-    <class-decl name='vtkSmartPointer&lt;vtkSurfaceLICComposite&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-519'>
+    <class-decl name='vtkSmartPointer&lt;vtkSurfaceLICComposite&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-521'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkSurfaceLICComposite* vtkSmartPointer<vtkSurfaceLICComposite>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -21110,7 +21140,7 @@ 
         <!-- void vtkSmartPointer<vtkSurfaceLICComposite>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21119,7 +21149,7 @@ 
         <!-- void vtkSmartPointer<vtkSurfaceLICComposite>::vtkSmartPointer(vtkSurfaceLICComposite*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <!-- parameter of type 'vtkSurfaceLICComposite*' -->
           <parameter type-id='type-id-472'/>
           <!-- void -->
@@ -21130,18 +21160,18 @@ 
         <!-- vtkSmartPointer<vtkSurfaceLICComposite>& vtkSmartPointer<vtkSurfaceLICComposite>::operator=(vtkSurfaceLICComposite*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <!-- parameter of type 'vtkSurfaceLICComposite*' -->
           <parameter type-id='type-id-472'/>
           <!-- vtkSmartPointer<vtkSurfaceLICComposite>& -->
-          <return type-id='type-id-615'/>
+          <return type-id='type-id-617'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSurfaceLICComposite* vtkSmartPointer<vtkSurfaceLICComposite>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-616' is-artificial='yes'/>
+          <parameter type-id='type-id-618' is-artificial='yes'/>
           <!-- vtkSurfaceLICComposite* -->
           <return type-id='type-id-472'/>
         </function-decl>
@@ -21150,7 +21180,7 @@ 
         <!-- vtkSurfaceLICComposite* vtkSmartPointer<vtkSurfaceLICComposite>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-616' is-artificial='yes'/>
+          <parameter type-id='type-id-618' is-artificial='yes'/>
           <!-- vtkSurfaceLICComposite* -->
           <return type-id='type-id-472'/>
         </function-decl>
@@ -21159,7 +21189,7 @@ 
         <!-- vtkSurfaceLICComposite* vtkSmartPointer<vtkSurfaceLICComposite>::operator vtkSurfaceLICComposite*() -->
         <function-decl name='operator vtkSurfaceLICComposite*' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-616' is-artificial='yes'/>
+          <parameter type-id='type-id-618' is-artificial='yes'/>
           <!-- vtkSurfaceLICComposite* -->
           <return type-id='type-id-472'/>
         </function-decl>
@@ -21168,16 +21198,16 @@ 
         <!-- vtkSurfaceLICComposite& vtkSmartPointer<vtkSurfaceLICComposite>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-616' is-artificial='yes'/>
+          <parameter type-id='type-id-618' is-artificial='yes'/>
           <!-- vtkSurfaceLICComposite& -->
-          <return type-id='type-id-617'/>
+          <return type-id='type-id-619'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSurfaceLICComposite* vtkSmartPointer<vtkSurfaceLICComposite>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-616' is-artificial='yes'/>
+          <parameter type-id='type-id-618' is-artificial='yes'/>
           <!-- vtkSurfaceLICComposite* -->
           <return type-id='type-id-472'/>
         </function-decl>
@@ -21186,7 +21216,7 @@ 
         <!-- void vtkSmartPointer<vtkSurfaceLICComposite>::TakeReference(vtkSurfaceLICComposite*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <!-- parameter of type 'vtkSurfaceLICComposite*' -->
           <parameter type-id='type-id-472'/>
           <!-- void -->
@@ -21197,7 +21227,7 @@ 
         <!-- vtkSmartPointer<vtkSurfaceLICComposite> vtkSmartPointer<vtkSurfaceLICComposite>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkSurfaceLICComposite> -->
-          <return type-id='type-id-519'/>
+          <return type-id='type-id-521'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -21206,7 +21236,7 @@ 
           <!-- parameter of type 'vtkSurfaceLICComposite*' -->
           <parameter type-id='type-id-472'/>
           <!-- class vtkSmartPointer<vtkSurfaceLICComposite> -->
-          <return type-id='type-id-519'/>
+          <return type-id='type-id-521'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -21215,18 +21245,18 @@ 
           <!-- parameter of type 'vtkSurfaceLICComposite*' -->
           <parameter type-id='type-id-472'/>
           <!-- class vtkSmartPointer<vtkSurfaceLICComposite> -->
-          <return type-id='type-id-519'/>
+          <return type-id='type-id-521'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkSurfaceLICComposite>::vtkSmartPointer(vtkSurfaceLICComposite*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <!-- parameter of type 'vtkSurfaceLICComposite*' -->
           <parameter type-id='type-id-472'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21235,9 +21265,9 @@ 
         <!-- void vtkSmartPointer<vtkSurfaceLICComposite>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21246,16 +21276,16 @@ 
         <!-- void vtkSmartPointer<vtkSurfaceLICComposite>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkLineIntegralConvolution2D> -->
-    <class-decl name='vtkSmartPointer&lt;vtkLineIntegralConvolution2D&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-520'>
+    <class-decl name='vtkSmartPointer&lt;vtkLineIntegralConvolution2D&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-522'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkLineIntegralConvolution2D* vtkSmartPointer<vtkLineIntegralConvolution2D>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -21269,7 +21299,7 @@ 
         <!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21278,7 +21308,7 @@ 
         <!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::vtkSmartPointer(vtkLineIntegralConvolution2D*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
           <parameter type-id='type-id-323'/>
           <!-- void -->
@@ -21289,18 +21319,18 @@ 
         <!-- vtkSmartPointer<vtkLineIntegralConvolution2D>& vtkSmartPointer<vtkLineIntegralConvolution2D>::operator=(vtkLineIntegralConvolution2D*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
           <parameter type-id='type-id-323'/>
           <!-- vtkSmartPointer<vtkLineIntegralConvolution2D>& -->
-          <return type-id='type-id-619'/>
+          <return type-id='type-id-621'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkLineIntegralConvolution2D* vtkSmartPointer<vtkLineIntegralConvolution2D>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-620' is-artificial='yes'/>
+          <parameter type-id='type-id-622' is-artificial='yes'/>
           <!-- vtkLineIntegralConvolution2D* -->
           <return type-id='type-id-323'/>
         </function-decl>
@@ -21309,7 +21339,7 @@ 
         <!-- vtkLineIntegralConvolution2D* vtkSmartPointer<vtkLineIntegralConvolution2D>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-620' is-artificial='yes'/>
+          <parameter type-id='type-id-622' is-artificial='yes'/>
           <!-- vtkLineIntegralConvolution2D* -->
           <return type-id='type-id-323'/>
         </function-decl>
@@ -21318,7 +21348,7 @@ 
         <!-- vtkLineIntegralConvolution2D* vtkSmartPointer<vtkLineIntegralConvolution2D>::operator vtkLineIntegralConvolution2D*() -->
         <function-decl name='operator vtkLineIntegralConvolution2D*' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-620' is-artificial='yes'/>
+          <parameter type-id='type-id-622' is-artificial='yes'/>
           <!-- vtkLineIntegralConvolution2D* -->
           <return type-id='type-id-323'/>
         </function-decl>
@@ -21327,16 +21357,16 @@ 
         <!-- vtkLineIntegralConvolution2D& vtkSmartPointer<vtkLineIntegralConvolution2D>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-620' is-artificial='yes'/>
+          <parameter type-id='type-id-622' is-artificial='yes'/>
           <!-- vtkLineIntegralConvolution2D& -->
-          <return type-id='type-id-621'/>
+          <return type-id='type-id-623'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkLineIntegralConvolution2D* vtkSmartPointer<vtkLineIntegralConvolution2D>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-620' is-artificial='yes'/>
+          <parameter type-id='type-id-622' is-artificial='yes'/>
           <!-- vtkLineIntegralConvolution2D* -->
           <return type-id='type-id-323'/>
         </function-decl>
@@ -21345,7 +21375,7 @@ 
         <!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::TakeReference(vtkLineIntegralConvolution2D*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
           <parameter type-id='type-id-323'/>
           <!-- void -->
@@ -21356,7 +21386,7 @@ 
         <!-- vtkSmartPointer<vtkLineIntegralConvolution2D> vtkSmartPointer<vtkLineIntegralConvolution2D>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkLineIntegralConvolution2D> -->
-          <return type-id='type-id-520'/>
+          <return type-id='type-id-522'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -21365,7 +21395,7 @@ 
           <!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
           <parameter type-id='type-id-323'/>
           <!-- class vtkSmartPointer<vtkLineIntegralConvolution2D> -->
-          <return type-id='type-id-520'/>
+          <return type-id='type-id-522'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -21374,18 +21404,18 @@ 
           <!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
           <parameter type-id='type-id-323'/>
           <!-- class vtkSmartPointer<vtkLineIntegralConvolution2D> -->
-          <return type-id='type-id-520'/>
+          <return type-id='type-id-522'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::vtkSmartPointer(vtkLineIntegralConvolution2D*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
           <parameter type-id='type-id-323'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21394,9 +21424,9 @@ 
         <!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21405,30 +21435,30 @@ 
         <!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkTimerLog> -->
-    <class-decl name='vtkSmartPointer&lt;vtkTimerLog&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-622'>
+    <class-decl name='vtkSmartPointer&lt;vtkTimerLog&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-624'>
     <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <!-- vtkTimerLog* vtkSmartPointer<vtkTimerLog>::CheckType() -->
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkTimerLog*' -->
-          <parameter type-id='type-id-623'/>
+          <parameter type-id='type-id-625'/>
           <!-- vtkTimerLog* -->
-          <return type-id='type-id-623'/>
+          <return type-id='type-id-625'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkTimerLog>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-624' is-artificial='yes'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21437,9 +21467,9 @@ 
         <!-- void vtkSmartPointer<vtkTimerLog>::vtkSmartPointer(vtkTimerLog*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-624' is-artificial='yes'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
           <!-- parameter of type 'vtkTimerLog*' -->
-          <parameter type-id='type-id-623'/>
+          <parameter type-id='type-id-625'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21448,65 +21478,65 @@ 
         <!-- vtkSmartPointer<vtkTimerLog>& vtkSmartPointer<vtkTimerLog>::operator=(vtkTimerLog*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-624' is-artificial='yes'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
           <!-- parameter of type 'vtkTimerLog*' -->
-          <parameter type-id='type-id-623'/>
+          <parameter type-id='type-id-625'/>
           <!-- vtkSmartPointer<vtkTimerLog>& -->
-          <return type-id='type-id-625'/>
+          <return type-id='type-id-627'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTimerLog* vtkSmartPointer<vtkTimerLog>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-626' is-artificial='yes'/>
+          <parameter type-id='type-id-628' is-artificial='yes'/>
           <!-- vtkTimerLog* -->
-          <return type-id='type-id-623'/>
+          <return type-id='type-id-625'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTimerLog* vtkSmartPointer<vtkTimerLog>::Get() -->
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-626' is-artificial='yes'/>
+          <parameter type-id='type-id-628' is-artificial='yes'/>
           <!-- vtkTimerLog* -->
-          <return type-id='type-id-623'/>
+          <return type-id='type-id-625'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTimerLog* vtkSmartPointer<vtkTimerLog>::operator vtkTimerLog*() -->
         <function-decl name='operator vtkTimerLog*' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-626' is-artificial='yes'/>
+          <parameter type-id='type-id-628' is-artificial='yes'/>
           <!-- vtkTimerLog* -->
-          <return type-id='type-id-623'/>
+          <return type-id='type-id-625'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTimerLog& vtkSmartPointer<vtkTimerLog>::operator*() -->
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-626' is-artificial='yes'/>
+          <parameter type-id='type-id-628' is-artificial='yes'/>
           <!-- vtkTimerLog& -->
-          <return type-id='type-id-627'/>
+          <return type-id='type-id-629'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTimerLog* vtkSmartPointer<vtkTimerLog>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-626' is-artificial='yes'/>
+          <parameter type-id='type-id-628' is-artificial='yes'/>
           <!-- vtkTimerLog* -->
-          <return type-id='type-id-623'/>
+          <return type-id='type-id-625'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkTimerLog>::TakeReference(vtkTimerLog*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-624' is-artificial='yes'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
           <!-- parameter of type 'vtkTimerLog*' -->
-          <parameter type-id='type-id-623'/>
+          <parameter type-id='type-id-625'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21515,36 +21545,36 @@ 
         <!-- vtkSmartPointer<vtkTimerLog> vtkSmartPointer<vtkTimerLog>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkTimerLog> -->
-          <return type-id='type-id-622'/>
+          <return type-id='type-id-624'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkTimerLog> vtkSmartPointer<vtkTimerLog>::NewInstance() -->
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkTimerLog*' -->
-          <parameter type-id='type-id-623'/>
+          <parameter type-id='type-id-625'/>
           <!-- class vtkSmartPointer<vtkTimerLog> -->
-          <return type-id='type-id-622'/>
+          <return type-id='type-id-624'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkTimerLog> vtkSmartPointer<vtkTimerLog>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkTimerLog*' -->
-          <parameter type-id='type-id-623'/>
+          <parameter type-id='type-id-625'/>
           <!-- class vtkSmartPointer<vtkTimerLog> -->
-          <return type-id='type-id-622'/>
+          <return type-id='type-id-624'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkSmartPointer<vtkTimerLog>::vtkSmartPointer(vtkTimerLog*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-624' is-artificial='yes'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
           <!-- parameter of type 'vtkTimerLog*' -->
-          <parameter type-id='type-id-623'/>
+          <parameter type-id='type-id-625'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21553,9 +21583,9 @@ 
         <!-- void vtkSmartPointer<vtkTimerLog>::TakeReference(const vtkSmartPointerBase&) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-624' is-artificial='yes'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -21564,242 +21594,242 @@ 
         <!-- void vtkSmartPointer<vtkTimerLog>::Take() -->
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- GLfloat* -->
-    <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-60'/>
+    <pointer-type-def type-id='type-id-558' size-in-bits='64' id='type-id-60'/>
     <!-- const double -->
-    <qualified-type-def type-id='type-id-15' const='yes' id='type-id-628'/>
+    <qualified-type-def type-id='type-id-15' const='yes' id='type-id-630'/>
     <!-- const double& -->
-    <reference-type-def kind='lvalue' type-id='type-id-628' size-in-bits='64' id='type-id-629'/>
+    <reference-type-def kind='lvalue' type-id='type-id-630' size-in-bits='64' id='type-id-631'/>
     <!-- const double* -->
-    <pointer-type-def type-id='type-id-628' size-in-bits='64' id='type-id-566'/>
+    <pointer-type-def type-id='type-id-630' size-in-bits='64' id='type-id-568'/>
     <!-- const std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
-    <qualified-type-def type-id='type-id-630' const='yes' id='type-id-631'/>
+    <qualified-type-def type-id='type-id-632' const='yes' id='type-id-633'/>
     <!-- const std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
-    <pointer-type-def type-id='type-id-631' size-in-bits='64' id='type-id-632'/>
+    <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-634'/>
     <!-- const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
-    <qualified-type-def type-id='type-id-633' const='yes' id='type-id-634'/>
+    <qualified-type-def type-id='type-id-635' const='yes' id='type-id-636'/>
     <!-- const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-634' size-in-bits='64' id='type-id-635'/>
+    <reference-type-def kind='lvalue' type-id='type-id-636' size-in-bits='64' id='type-id-637'/>
     <!-- const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
-    <pointer-type-def type-id='type-id-634' size-in-bits='64' id='type-id-636'/>
+    <pointer-type-def type-id='type-id-636' size-in-bits='64' id='type-id-638'/>
     <!-- const vtkBoundingBox -->
-    <qualified-type-def type-id='type-id-564' const='yes' id='type-id-637'/>
+    <qualified-type-def type-id='type-id-566' const='yes' id='type-id-639'/>
     <!-- const vtkBoundingBox& -->
-    <reference-type-def kind='lvalue' type-id='type-id-637' size-in-bits='64' id='type-id-567'/>
+    <reference-type-def kind='lvalue' type-id='type-id-639' size-in-bits='64' id='type-id-569'/>
     <!-- const vtkBoundingBox* -->
-    <pointer-type-def type-id='type-id-637' size-in-bits='64' id='type-id-569'/>
+    <pointer-type-def type-id='type-id-639' size-in-bits='64' id='type-id-571'/>
     <!-- const vtkDataObject -->
-    <qualified-type-def type-id='type-id-235' const='yes' id='type-id-638'/>
+    <qualified-type-def type-id='type-id-235' const='yes' id='type-id-640'/>
     <!-- const vtkDataObject* -->
-    <pointer-type-def type-id='type-id-638' size-in-bits='64' id='type-id-288'/>
+    <pointer-type-def type-id='type-id-640' size-in-bits='64' id='type-id-288'/>
     <!-- const vtkSmartPointer<vtkBackgroundColorMonitor> -->
-    <qualified-type-def type-id='type-id-511' const='yes' id='type-id-639'/>
+    <qualified-type-def type-id='type-id-513' const='yes' id='type-id-641'/>
     <!-- const vtkSmartPointer<vtkBackgroundColorMonitor>* -->
-    <pointer-type-def type-id='type-id-639' size-in-bits='64' id='type-id-583'/>
+    <pointer-type-def type-id='type-id-641' size-in-bits='64' id='type-id-585'/>
     <!-- const vtkSmartPointer<vtkColorMaterialHelper> -->
-    <qualified-type-def type-id='type-id-518' const='yes' id='type-id-640'/>
+    <qualified-type-def type-id='type-id-520' const='yes' id='type-id-642'/>
     <!-- const vtkSmartPointer<vtkColorMaterialHelper>* -->
-    <pointer-type-def type-id='type-id-640' size-in-bits='64' id='type-id-612'/>
+    <pointer-type-def type-id='type-id-642' size-in-bits='64' id='type-id-614'/>
     <!-- const vtkSmartPointer<vtkFrameBufferObject2> -->
-    <qualified-type-def type-id='type-id-515' const='yes' id='type-id-641'/>
+    <qualified-type-def type-id='type-id-517' const='yes' id='type-id-643'/>
     <!-- const vtkSmartPointer<vtkFrameBufferObject2>* -->
-    <pointer-type-def type-id='type-id-641' size-in-bits='64' id='type-id-598'/>
+    <pointer-type-def type-id='type-id-643' size-in-bits='64' id='type-id-600'/>
     <!-- const vtkSmartPointer<vtkImageData> -->
-    <qualified-type-def type-id='type-id-514' const='yes' id='type-id-642'/>
+    <qualified-type-def type-id='type-id-516' const='yes' id='type-id-644'/>
     <!-- const vtkSmartPointer<vtkImageData>* -->
-    <pointer-type-def type-id='type-id-642' size-in-bits='64' id='type-id-594'/>
+    <pointer-type-def type-id='type-id-644' size-in-bits='64' id='type-id-596'/>
     <!-- const vtkSmartPointer<vtkLightingHelper> -->
-    <qualified-type-def type-id='type-id-517' const='yes' id='type-id-643'/>
+    <qualified-type-def type-id='type-id-519' const='yes' id='type-id-645'/>
     <!-- const vtkSmartPointer<vtkLightingHelper>* -->
-    <pointer-type-def type-id='type-id-643' size-in-bits='64' id='type-id-607'/>
+    <pointer-type-def type-id='type-id-645' size-in-bits='64' id='type-id-609'/>
     <!-- const vtkSmartPointer<vtkLineIntegralConvolution2D> -->
-    <qualified-type-def type-id='type-id-520' const='yes' id='type-id-644'/>
+    <qualified-type-def type-id='type-id-522' const='yes' id='type-id-646'/>
     <!-- const vtkSmartPointer<vtkLineIntegralConvolution2D>* -->
-    <pointer-type-def type-id='type-id-644' size-in-bits='64' id='type-id-620'/>
+    <pointer-type-def type-id='type-id-646' size-in-bits='64' id='type-id-622'/>
     <!-- const vtkSmartPointer<vtkOpenGLLightMonitor> -->
-    <qualified-type-def type-id='type-id-554' const='yes' id='type-id-645'/>
+    <qualified-type-def type-id='type-id-556' const='yes' id='type-id-647'/>
     <!-- const vtkSmartPointer<vtkOpenGLLightMonitor>* -->
-    <pointer-type-def type-id='type-id-645' size-in-bits='64' id='type-id-573'/>
+    <pointer-type-def type-id='type-id-647' size-in-bits='64' id='type-id-575'/>
     <!-- const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
-    <qualified-type-def type-id='type-id-510' const='yes' id='type-id-646'/>
+    <qualified-type-def type-id='type-id-512' const='yes' id='type-id-648'/>
     <!-- const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>* -->
-    <pointer-type-def type-id='type-id-646' size-in-bits='64' id='type-id-578'/>
+    <pointer-type-def type-id='type-id-648' size-in-bits='64' id='type-id-580'/>
     <!-- const vtkSmartPointer<vtkShaderProgram2> -->
-    <qualified-type-def type-id='type-id-516' const='yes' id='type-id-647'/>
+    <qualified-type-def type-id='type-id-518' const='yes' id='type-id-649'/>
     <!-- const vtkSmartPointer<vtkShaderProgram2>* -->
-    <pointer-type-def type-id='type-id-647' size-in-bits='64' id='type-id-602'/>
+    <pointer-type-def type-id='type-id-649' size-in-bits='64' id='type-id-604'/>
     <!-- const vtkSmartPointer<vtkSurfaceLICComposite> -->
-    <qualified-type-def type-id='type-id-519' const='yes' id='type-id-648'/>
+    <qualified-type-def type-id='type-id-521' const='yes' id='type-id-650'/>
     <!-- const vtkSmartPointer<vtkSurfaceLICComposite>* -->
-    <pointer-type-def type-id='type-id-648' size-in-bits='64' id='type-id-616'/>
+    <pointer-type-def type-id='type-id-650' size-in-bits='64' id='type-id-618'/>
     <!-- const vtkSmartPointer<vtkTextureObject> -->
-    <qualified-type-def type-id='type-id-513' const='yes' id='type-id-649'/>
+    <qualified-type-def type-id='type-id-515' const='yes' id='type-id-651'/>
     <!-- const vtkSmartPointer<vtkTextureObject>* -->
-    <pointer-type-def type-id='type-id-649' size-in-bits='64' id='type-id-590'/>
+    <pointer-type-def type-id='type-id-651' size-in-bits='64' id='type-id-592'/>
     <!-- const vtkSmartPointer<vtkTimerLog> -->
-    <qualified-type-def type-id='type-id-622' const='yes' id='type-id-650'/>
+    <qualified-type-def type-id='type-id-624' const='yes' id='type-id-652'/>
     <!-- const vtkSmartPointer<vtkTimerLog>* -->
-    <pointer-type-def type-id='type-id-650' size-in-bits='64' id='type-id-626'/>
+    <pointer-type-def type-id='type-id-652' size-in-bits='64' id='type-id-628'/>
     <!-- const vtkSmartPointerBase -->
-    <qualified-type-def type-id='type-id-557' const='yes' id='type-id-651'/>
+    <qualified-type-def type-id='type-id-559' const='yes' id='type-id-653'/>
     <!-- const vtkSmartPointerBase& -->
-    <reference-type-def kind='lvalue' type-id='type-id-651' size-in-bits='64' id='type-id-560'/>
+    <reference-type-def kind='lvalue' type-id='type-id-653' size-in-bits='64' id='type-id-562'/>
     <!-- const vtkSmartPointerBase* -->
-    <pointer-type-def type-id='type-id-651' size-in-bits='64' id='type-id-562'/>
+    <pointer-type-def type-id='type-id-653' size-in-bits='64' id='type-id-564'/>
     <!-- const vtkSmartPointerBase::NoReference -->
-    <qualified-type-def type-id='type-id-558' const='yes' id='type-id-652'/>
+    <qualified-type-def type-id='type-id-560' const='yes' id='type-id-654'/>
     <!-- const vtkSmartPointerBase::NoReference& -->
-    <reference-type-def kind='lvalue' type-id='type-id-652' size-in-bits='64' id='type-id-563'/>
+    <reference-type-def kind='lvalue' type-id='type-id-654' size-in-bits='64' id='type-id-565'/>
     <!-- const vtkSurfaceLICPainter -->
-    <qualified-type-def type-id='type-id-504' const='yes' id='type-id-653'/>
+    <qualified-type-def type-id='type-id-506' const='yes' id='type-id-655'/>
     <!-- const vtkSurfaceLICPainter& -->
-    <reference-type-def kind='lvalue' type-id='type-id-653' size-in-bits='64' id='type-id-527'/>
+    <reference-type-def kind='lvalue' type-id='type-id-655' size-in-bits='64' id='type-id-529'/>
     <!-- const vtkSurfaceLICPainter* -->
-    <pointer-type-def type-id='type-id-653' size-in-bits='64' id='type-id-525'/>
+    <pointer-type-def type-id='type-id-655' size-in-bits='64' id='type-id-527'/>
     <!-- const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface -->
-    <qualified-type-def type-id='type-id-654' const='yes' id='type-id-655'/>
+    <qualified-type-def type-id='type-id-656' const='yes' id='type-id-657'/>
     <!-- const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface& -->
-    <reference-type-def kind='lvalue' type-id='type-id-655' size-in-bits='64' id='type-id-656'/>
+    <reference-type-def kind='lvalue' type-id='type-id-657' size-in-bits='64' id='type-id-658'/>
     <!-- const vtkWeakPointer<vtkOpenGLRenderWindow> -->
-    <qualified-type-def type-id='type-id-512' const='yes' id='type-id-657'/>
+    <qualified-type-def type-id='type-id-514' const='yes' id='type-id-659'/>
     <!-- const vtkWeakPointer<vtkOpenGLRenderWindow>* -->
-    <pointer-type-def type-id='type-id-657' size-in-bits='64' id='type-id-587'/>
+    <pointer-type-def type-id='type-id-659' size-in-bits='64' id='type-id-589'/>
     <!-- double& -->
-    <reference-type-def kind='lvalue' type-id='type-id-15' size-in-bits='64' id='type-id-529'/>
+    <reference-type-def kind='lvalue' type-id='type-id-15' size-in-bits='64' id='type-id-531'/>
     <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
-    <pointer-type-def type-id='type-id-630' size-in-bits='64' id='type-id-658'/>
+    <pointer-type-def type-id='type-id-632' size-in-bits='64' id='type-id-660'/>
     <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl* -->
-    <pointer-type-def type-id='type-id-659' size-in-bits='64' id='type-id-660'/>
+    <pointer-type-def type-id='type-id-661' size-in-bits='64' id='type-id-662'/>
     <!-- std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-633' size-in-bits='64' id='type-id-661'/>
+    <reference-type-def kind='lvalue' type-id='type-id-635' size-in-bits='64' id='type-id-663'/>
     <!-- std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
-    <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-662'/>
+    <pointer-type-def type-id='type-id-635' size-in-bits='64' id='type-id-664'/>
     <!-- unsigned char* -->
-    <pointer-type-def type-id='type-id-553' size-in-bits='64' id='type-id-663'/>
+    <pointer-type-def type-id='type-id-555' size-in-bits='64' id='type-id-665'/>
     <!-- vtkBackgroundColorMonitor& -->
-    <reference-type-def kind='lvalue' type-id='type-id-664' size-in-bits='64' id='type-id-584'/>
+    <reference-type-def kind='lvalue' type-id='type-id-666' size-in-bits='64' id='type-id-586'/>
     <!-- vtkBackgroundColorMonitor* -->
-    <pointer-type-def type-id='type-id-664' size-in-bits='64' id='type-id-580'/>
+    <pointer-type-def type-id='type-id-666' size-in-bits='64' id='type-id-582'/>
     <!-- vtkBoundingBox& -->
-    <reference-type-def kind='lvalue' type-id='type-id-564' size-in-bits='64' id='type-id-568'/>
+    <reference-type-def kind='lvalue' type-id='type-id-566' size-in-bits='64' id='type-id-570'/>
     <!-- vtkBoundingBox* -->
-    <pointer-type-def type-id='type-id-564' size-in-bits='64' id='type-id-565'/>
+    <pointer-type-def type-id='type-id-566' size-in-bits='64' id='type-id-567'/>
     <!-- vtkCellData* -->
-    <pointer-type-def type-id='type-id-665' size-in-bits='64' id='type-id-294'/>
+    <pointer-type-def type-id='type-id-667' size-in-bits='64' id='type-id-294'/>
     <!-- vtkColorMaterialHelper& -->
-    <reference-type-def kind='lvalue' type-id='type-id-666' size-in-bits='64' id='type-id-613'/>
+    <reference-type-def kind='lvalue' type-id='type-id-668' size-in-bits='64' id='type-id-615'/>
     <!-- vtkColorMaterialHelper* -->
-    <pointer-type-def type-id='type-id-666' size-in-bits='64' id='type-id-609'/>
+    <pointer-type-def type-id='type-id-668' size-in-bits='64' id='type-id-611'/>
     <!-- vtkCompositeDataSet* -->
-    <pointer-type-def type-id='type-id-667' size-in-bits='64' id='type-id-668'/>
-    <!-- vtkFieldData* -->
     <pointer-type-def type-id='type-id-669' size-in-bits='64' id='type-id-670'/>
+    <!-- vtkFieldData* -->
+    <pointer-type-def type-id='type-id-671' size-in-bits='64' id='type-id-672'/>
     <!-- vtkFrameBufferObject2& -->
-    <reference-type-def kind='lvalue' type-id='type-id-415' size-in-bits='64' id='type-id-599'/>
+    <reference-type-def kind='lvalue' type-id='type-id-415' size-in-bits='64' id='type-id-601'/>
     <!-- vtkImageData& -->
-    <reference-type-def kind='lvalue' type-id='type-id-239' size-in-bits='64' id='type-id-595'/>
+    <reference-type-def kind='lvalue' type-id='type-id-239' size-in-bits='64' id='type-id-597'/>
     <!-- vtkLightingHelper& -->
-    <reference-type-def kind='lvalue' type-id='type-id-671' size-in-bits='64' id='type-id-608'/>
+    <reference-type-def kind='lvalue' type-id='type-id-673' size-in-bits='64' id='type-id-610'/>
     <!-- vtkLightingHelper* -->
-    <pointer-type-def type-id='type-id-671' size-in-bits='64' id='type-id-604'/>
+    <pointer-type-def type-id='type-id-673' size-in-bits='64' id='type-id-606'/>
     <!-- vtkLineIntegralConvolution2D& -->
-    <reference-type-def kind='lvalue' type-id='type-id-320' size-in-bits='64' id='type-id-621'/>
+    <reference-type-def kind='lvalue' type-id='type-id-320' size-in-bits='64' id='type-id-623'/>
     <!-- vtkMinimalStandardRandomSequence* -->
-    <pointer-type-def type-id='type-id-672' size-in-bits='64' id='type-id-673'/>
+    <pointer-type-def type-id='type-id-674' size-in-bits='64' id='type-id-675'/>
     <!-- vtkOpenGLLightMonitor& -->
-    <reference-type-def kind='lvalue' type-id='type-id-674' size-in-bits='64' id='type-id-574'/>
+    <reference-type-def kind='lvalue' type-id='type-id-676' size-in-bits='64' id='type-id-576'/>
     <!-- vtkOpenGLLightMonitor* -->
-    <pointer-type-def type-id='type-id-674' size-in-bits='64' id='type-id-570'/>
+    <pointer-type-def type-id='type-id-676' size-in-bits='64' id='type-id-572'/>
     <!-- vtkOpenGLModelViewProjectionMonitor& -->
-    <reference-type-def kind='lvalue' type-id='type-id-675' size-in-bits='64' id='type-id-579'/>
+    <reference-type-def kind='lvalue' type-id='type-id-677' size-in-bits='64' id='type-id-581'/>
     <!-- vtkOpenGLModelViewProjectionMonitor* -->
-    <pointer-type-def type-id='type-id-675' size-in-bits='64' id='type-id-575'/>
+    <pointer-type-def type-id='type-id-677' size-in-bits='64' id='type-id-577'/>
     <!-- vtkOpenGLRenderWindow& -->
-    <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-588'/>
+    <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-590'/>
     <!-- vtkScalarsToColors* -->
-    <pointer-type-def type-id='type-id-676' size-in-bits='64' id='type-id-677'/>
+    <pointer-type-def type-id='type-id-678' size-in-bits='64' id='type-id-679'/>
     <!-- vtkShaderProgram2& -->
-    <reference-type-def kind='lvalue' type-id='type-id-259' size-in-bits='64' id='type-id-603'/>
+    <reference-type-def kind='lvalue' type-id='type-id-259' size-in-bits='64' id='type-id-605'/>
     <!-- vtkSmartPointer<vtkBackgroundColorMonitor>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-511' size-in-bits='64' id='type-id-582'/>
+    <reference-type-def kind='lvalue' type-id='type-id-513' size-in-bits='64' id='type-id-584'/>
     <!-- vtkSmartPointer<vtkBackgroundColorMonitor>* -->
-    <pointer-type-def type-id='type-id-511' size-in-bits='64' id='type-id-581'/>
+    <pointer-type-def type-id='type-id-513' size-in-bits='64' id='type-id-583'/>
     <!-- vtkSmartPointer<vtkColorMaterialHelper>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-518' size-in-bits='64' id='type-id-611'/>
+    <reference-type-def kind='lvalue' type-id='type-id-520' size-in-bits='64' id='type-id-613'/>
     <!-- vtkSmartPointer<vtkColorMaterialHelper>* -->
-    <pointer-type-def type-id='type-id-518' size-in-bits='64' id='type-id-610'/>
+    <pointer-type-def type-id='type-id-520' size-in-bits='64' id='type-id-612'/>
     <!-- vtkSmartPointer<vtkFrameBufferObject2>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-515' size-in-bits='64' id='type-id-597'/>
+    <reference-type-def kind='lvalue' type-id='type-id-517' size-in-bits='64' id='type-id-599'/>
     <!-- vtkSmartPointer<vtkFrameBufferObject2>* -->
-    <pointer-type-def type-id='type-id-515' size-in-bits='64' id='type-id-596'/>
+    <pointer-type-def type-id='type-id-517' size-in-bits='64' id='type-id-598'/>
     <!-- vtkSmartPointer<vtkImageData>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-514' size-in-bits='64' id='type-id-593'/>
+    <reference-type-def kind='lvalue' type-id='type-id-516' size-in-bits='64' id='type-id-595'/>
     <!-- vtkSmartPointer<vtkImageData>* -->
-    <pointer-type-def type-id='type-id-514' size-in-bits='64' id='type-id-592'/>
+    <pointer-type-def type-id='type-id-516' size-in-bits='64' id='type-id-594'/>
     <!-- vtkSmartPointer<vtkLightingHelper>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-517' size-in-bits='64' id='type-id-606'/>
+    <reference-type-def kind='lvalue' type-id='type-id-519' size-in-bits='64' id='type-id-608'/>
     <!-- vtkSmartPointer<vtkLightingHelper>* -->
-    <pointer-type-def type-id='type-id-517' size-in-bits='64' id='type-id-605'/>
+    <pointer-type-def type-id='type-id-519' size-in-bits='64' id='type-id-607'/>
     <!-- vtkSmartPointer<vtkLineIntegralConvolution2D>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-520' size-in-bits='64' id='type-id-619'/>
+    <reference-type-def kind='lvalue' type-id='type-id-522' size-in-bits='64' id='type-id-621'/>
     <!-- vtkSmartPointer<vtkLineIntegralConvolution2D>* -->
-    <pointer-type-def type-id='type-id-520' size-in-bits='64' id='type-id-618'/>
+    <pointer-type-def type-id='type-id-522' size-in-bits='64' id='type-id-620'/>
     <!-- vtkSmartPointer<vtkOpenGLLightMonitor>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-554' size-in-bits='64' id='type-id-572'/>
+    <reference-type-def kind='lvalue' type-id='type-id-556' size-in-bits='64' id='type-id-574'/>
     <!-- vtkSmartPointer<vtkOpenGLLightMonitor>* -->
-    <pointer-type-def type-id='type-id-554' size-in-bits='64' id='type-id-571'/>
+    <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-573'/>
     <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-510' size-in-bits='64' id='type-id-577'/>
+    <reference-type-def kind='lvalue' type-id='type-id-512' size-in-bits='64' id='type-id-579'/>
     <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>* -->
-    <pointer-type-def type-id='type-id-510' size-in-bits='64' id='type-id-576'/>
+    <pointer-type-def type-id='type-id-512' size-in-bits='64' id='type-id-578'/>
     <!-- vtkSmartPointer<vtkShaderProgram2>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-516' size-in-bits='64' id='type-id-601'/>
+    <reference-type-def kind='lvalue' type-id='type-id-518' size-in-bits='64' id='type-id-603'/>
     <!-- vtkSmartPointer<vtkShaderProgram2>* -->
-    <pointer-type-def type-id='type-id-516' size-in-bits='64' id='type-id-600'/>
+    <pointer-type-def type-id='type-id-518' size-in-bits='64' id='type-id-602'/>
     <!-- vtkSmartPointer<vtkSurfaceLICComposite>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-519' size-in-bits='64' id='type-id-615'/>
+    <reference-type-def kind='lvalue' type-id='type-id-521' size-in-bits='64' id='type-id-617'/>
     <!-- vtkSmartPointer<vtkSurfaceLICComposite>* -->
-    <pointer-type-def type-id='type-id-519' size-in-bits='64' id='type-id-614'/>
+    <pointer-type-def type-id='type-id-521' size-in-bits='64' id='type-id-616'/>
     <!-- vtkSmartPointer<vtkTextureObject>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-513' size-in-bits='64' id='type-id-522'/>
+    <reference-type-def kind='lvalue' type-id='type-id-515' size-in-bits='64' id='type-id-524'/>
     <!-- vtkSmartPointer<vtkTextureObject>* -->
-    <pointer-type-def type-id='type-id-513' size-in-bits='64' id='type-id-589'/>
+    <pointer-type-def type-id='type-id-515' size-in-bits='64' id='type-id-591'/>
     <!-- vtkSmartPointer<vtkTimerLog>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-622' size-in-bits='64' id='type-id-625'/>
+    <reference-type-def kind='lvalue' type-id='type-id-624' size-in-bits='64' id='type-id-627'/>
     <!-- vtkSmartPointer<vtkTimerLog>* -->
-    <pointer-type-def type-id='type-id-622' size-in-bits='64' id='type-id-624'/>
+    <pointer-type-def type-id='type-id-624' size-in-bits='64' id='type-id-626'/>
     <!-- vtkSmartPointerBase& -->
-    <reference-type-def kind='lvalue' type-id='type-id-557' size-in-bits='64' id='type-id-561'/>
+    <reference-type-def kind='lvalue' type-id='type-id-559' size-in-bits='64' id='type-id-563'/>
     <!-- vtkSmartPointerBase* -->
-    <pointer-type-def type-id='type-id-557' size-in-bits='64' id='type-id-559'/>
+    <pointer-type-def type-id='type-id-559' size-in-bits='64' id='type-id-561'/>
     <!-- vtkSurfaceLICComposite& -->
-    <reference-type-def kind='lvalue' type-id='type-id-471' size-in-bits='64' id='type-id-617'/>
+    <reference-type-def kind='lvalue' type-id='type-id-471' size-in-bits='64' id='type-id-619'/>
     <!-- vtkSurfaceLICPainter::vtkInternals* -->
-    <pointer-type-def type-id='type-id-508' size-in-bits='64' id='type-id-521'/>
+    <pointer-type-def type-id='type-id-510' size-in-bits='64' id='type-id-523'/>
     <!-- vtkSurfaceLICPainterUtil::RandomNoise2D* -->
-    <pointer-type-def type-id='type-id-678' size-in-bits='64' id='type-id-679'/>
+    <pointer-type-def type-id='type-id-680' size-in-bits='64' id='type-id-681'/>
     <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface* -->
-    <pointer-type-def type-id='type-id-654' size-in-bits='64' id='type-id-680'/>
+    <pointer-type-def type-id='type-id-656' size-in-bits='64' id='type-id-682'/>
     <!-- vtkTextureObject& -->
-    <reference-type-def kind='lvalue' type-id='type-id-290' size-in-bits='64' id='type-id-591'/>
+    <reference-type-def kind='lvalue' type-id='type-id-290' size-in-bits='64' id='type-id-593'/>
     <!-- vtkTimerLog& -->
-    <reference-type-def kind='lvalue' type-id='type-id-681' size-in-bits='64' id='type-id-627'/>
+    <reference-type-def kind='lvalue' type-id='type-id-683' size-in-bits='64' id='type-id-629'/>
     <!-- vtkTimerLog* -->
-    <pointer-type-def type-id='type-id-681' size-in-bits='64' id='type-id-623'/>
+    <pointer-type-def type-id='type-id-683' size-in-bits='64' id='type-id-625'/>
     <!-- vtkUniformVariables* -->
-    <pointer-type-def type-id='type-id-682' size-in-bits='64' id='type-id-683'/>
+    <pointer-type-def type-id='type-id-684' size-in-bits='64' id='type-id-685'/>
     <!-- vtkWeakPointer<vtkOpenGLRenderWindow>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-512' size-in-bits='64' id='type-id-586'/>
+    <reference-type-def kind='lvalue' type-id='type-id-514' size-in-bits='64' id='type-id-588'/>
     <!-- vtkWeakPointer<vtkOpenGLRenderWindow>* -->
-    <pointer-type-def type-id='type-id-512' size-in-bits='64' id='type-id-585'/>
+    <pointer-type-def type-id='type-id-514' size-in-bits='64' id='type-id-587'/>
     <!-- vtkWindow* -->
-    <pointer-type-def type-id='type-id-684' size-in-bits='64' id='type-id-528'/>
+    <pointer-type-def type-id='type-id-686' size-in-bits='64' id='type-id-530'/>
     <!-- namespace std -->
     <namespace-decl name='std'>
       <!-- vtkPixelExtent* std::uninitialized_copy<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent*>(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent*) -->
@@ -21856,10 +21886,10 @@ 
         <return type-id='type-id-1'/>
       </function-decl>
       <!-- struct std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
-      <class-decl name='_Vector_base&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-630'>
+      <class-decl name='_Vector_base&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-632'>
           <member-type access='public'>
             <!-- struct std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl -->
-            <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-659'>
+            <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-661'>
             <!-- class std::allocator<vtkPixelExtent> -->
               <base-class access='public' layout-offset-in-bits='0' type-id='type-id-161'/>
               <data-member access='public' layout-offset-in-bits='0'>
@@ -21878,7 +21908,7 @@ 
                 <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl::_Vector_impl() -->
                 <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
                   <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl*' -->
-                  <parameter type-id='type-id-660' is-artificial='yes'/>
+                  <parameter type-id='type-id-662' is-artificial='yes'/>
                   <!-- void -->
                   <return type-id='type-id-26'/>
                 </function-decl>
@@ -21887,7 +21917,7 @@ 
                 <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl::_Vector_impl(const std::allocator<vtkPixelExtent>&) -->
                 <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
                   <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl*' -->
-                  <parameter type-id='type-id-660' is-artificial='yes'/>
+                  <parameter type-id='type-id-662' is-artificial='yes'/>
                   <!-- parameter of type 'const std::allocator<vtkPixelExtent>&' -->
                   <parameter type-id='type-id-163'/>
                   <!-- void -->
@@ -21898,13 +21928,13 @@ 
           </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
           <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_impl -->
-          <var-decl name='_M_impl' type-id='type-id-659' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-661' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
         </data-member>
         <member-function access='public'>
           <!-- std::allocator<vtkPixelExtent>& std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_get_Tp_allocator() -->
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <!-- std::allocator<vtkPixelExtent>& -->
             <return type-id='type-id-210'/>
           </function-decl>
@@ -21913,7 +21943,7 @@ 
           <!-- const std::allocator<vtkPixelExtent>& std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_get_Tp_allocator() -->
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNKSt12_Vector_baseI14vtkPixelExtentSaIS0_EE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-632' is-artificial='yes'/>
+            <parameter type-id='type-id-634' is-artificial='yes'/>
             <!-- const std::allocator<vtkPixelExtent>& -->
             <return type-id='type-id-163'/>
           </function-decl>
@@ -21922,7 +21952,7 @@ 
           <!-- std::allocator<vtkPixelExtent> std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::get_allocator() -->
           <function-decl name='get_allocator' mangled-name='_ZNKSt12_Vector_baseI14vtkPixelExtentSaIS0_EE13get_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-632' is-artificial='yes'/>
+            <parameter type-id='type-id-634' is-artificial='yes'/>
             <!-- class std::allocator<vtkPixelExtent> -->
             <return type-id='type-id-161'/>
           </function-decl>
@@ -21931,7 +21961,7 @@ 
           <!-- void std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_base() -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
@@ -21940,7 +21970,7 @@ 
           <!-- void std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_base(const std::allocator<vtkPixelExtent>&) -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<vtkPixelExtent>&' -->
             <parameter type-id='type-id-163'/>
             <!-- void -->
@@ -21951,7 +21981,7 @@ 
           <!-- void std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_base(unsigned long int, const std::allocator<vtkPixelExtent>&) -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const std::allocator<vtkPixelExtent>&' -->
@@ -21964,7 +21994,7 @@ 
           <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::~_Vector_base(int) -->
           <function-decl name='~_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -21975,7 +22005,7 @@ 
           <!-- vtkPixelExtent* std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_allocate(unsigned long int) -->
           <function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE11_M_allocateEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- vtkPixelExtent* -->
@@ -21986,7 +22016,7 @@ 
           <!-- void std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_deallocate(vtkPixelExtent*, unsigned long int) -->
           <function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE13_M_deallocateEPS0_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <!-- parameter of type 'vtkPixelExtent*' -->
             <parameter type-id='type-id-48'/>
             <!-- parameter of type 'unsigned long int' -->
@@ -21997,14 +22027,14 @@ 
         </member-function>
       </class-decl>
       <!-- class std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
-      <class-decl name='vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-633'>
+      <class-decl name='vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-635'>
       <!-- struct std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
-        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-630'/>
+        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-632'/>
         <member-function access='private'>
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::vector() -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
@@ -22013,7 +22043,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::vector(const std::allocator<vtkPixelExtent>&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<vtkPixelExtent>&' -->
             <parameter type-id='type-id-163'/>
             <!-- void -->
@@ -22024,7 +22054,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::vector(unsigned long int, const vtkPixelExtent&, const std::allocator<vtkPixelExtent>&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -22039,9 +22069,9 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::vector(const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
-            <parameter type-id='type-id-635'/>
+            <parameter type-id='type-id-637'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
@@ -22050,7 +22080,7 @@ 
           <!-- std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::~vector(int) -->
           <function-decl name='~vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -22061,18 +22091,18 @@ 
           <!-- std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >& std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::operator=(const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
           <function-decl name='operator=' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EEaSERKS2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
-            <parameter type-id='type-id-635'/>
+            <parameter type-id='type-id-637'/>
             <!-- std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
-            <return type-id='type-id-661'/>
+            <return type-id='type-id-663'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::assign(unsigned long int, const vtkPixelExtent&) -->
           <function-decl name='assign' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE6assignEmRKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='374' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -22085,79 +22115,79 @@ 
           <!-- __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::begin() -->
           <function-decl name='begin' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE5beginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='425' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-            <return type-id='type-id-685'/>
+            <return type-id='type-id-687'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- __gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::begin() -->
           <function-decl name='begin' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE5beginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='434' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- class __gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-            <return type-id='type-id-686'/>
+            <return type-id='type-id-688'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::end() -->
           <function-decl name='end' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE3endEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='443' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-            <return type-id='type-id-685'/>
+            <return type-id='type-id-687'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- __gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::end() -->
           <function-decl name='end' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE3endEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='452' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- class __gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-            <return type-id='type-id-686'/>
+            <return type-id='type-id-688'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- std::reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::rbegin() -->
           <function-decl name='rbegin' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE6rbeginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='461' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > -->
-            <return type-id='type-id-687'/>
+            <return type-id='type-id-689'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- std::reverse_iterator<__gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::rbegin() -->
           <function-decl name='rbegin' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE6rbeginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='470' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > -->
-            <return type-id='type-id-688'/>
+            <return type-id='type-id-690'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- std::reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::rend() -->
           <function-decl name='rend' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE4rendEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='479' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > -->
-            <return type-id='type-id-687'/>
+            <return type-id='type-id-689'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- std::reverse_iterator<__gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::rend() -->
           <function-decl name='rend' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE4rendEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='488' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > -->
-            <return type-id='type-id-688'/>
+            <return type-id='type-id-690'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- size_t std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::size() -->
           <function-decl name='size' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE4sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='532' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- typedef size_t -->
             <return type-id='type-id-37'/>
           </function-decl>
@@ -22166,7 +22196,7 @@ 
           <!-- size_t std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::max_size() -->
           <function-decl name='max_size' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='537' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- typedef size_t -->
             <return type-id='type-id-37'/>
           </function-decl>
@@ -22175,7 +22205,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::resize(unsigned long int, vtkPixelExtent) -->
           <function-decl name='resize' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE6resizeEmS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='552' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'class vtkPixelExtent' -->
@@ -22188,7 +22218,7 @@ 
           <!-- size_t std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::capacity() -->
           <function-decl name='capacity' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE8capacityEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- typedef size_t -->
             <return type-id='type-id-37'/>
           </function-decl>
@@ -22197,7 +22227,7 @@ 
           <!-- bool std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::empty() -->
           <function-decl name='empty' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE5emptyEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='574' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- bool -->
             <return type-id='type-id-1'/>
           </function-decl>
@@ -22206,7 +22236,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::reserve(unsigned long int) -->
           <function-decl name='reserve' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE7reserveEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- void -->
@@ -22217,7 +22247,7 @@ 
           <!-- vtkPixelExtent& std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::operator[](unsigned long int) -->
           <function-decl name='operator[]' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- vtkPixelExtent& -->
@@ -22228,7 +22258,7 @@ 
           <!-- const vtkPixelExtent& std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::operator[](unsigned long int) -->
           <function-decl name='operator[]' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='625' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- const vtkPixelExtent& -->
@@ -22239,7 +22269,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_range_check(unsigned long int) -->
           <function-decl name='_M_range_check' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE14_M_range_checkEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='631' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- void -->
@@ -22250,7 +22280,7 @@ 
           <!-- vtkPixelExtent& std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::at(unsigned long int) -->
           <function-decl name='at' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE2atEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='650' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- vtkPixelExtent& -->
@@ -22261,7 +22291,7 @@ 
           <!-- const vtkPixelExtent& std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::at(unsigned long int) -->
           <function-decl name='at' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE2atEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='668' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- const vtkPixelExtent& -->
@@ -22272,7 +22302,7 @@ 
           <!-- vtkPixelExtent& std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::front() -->
           <function-decl name='front' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE5frontEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='679' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- vtkPixelExtent& -->
             <return type-id='type-id-50'/>
           </function-decl>
@@ -22281,7 +22311,7 @@ 
           <!-- const vtkPixelExtent& std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::front() -->
           <function-decl name='front' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE5frontEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='687' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- const vtkPixelExtent& -->
             <return type-id='type-id-49'/>
           </function-decl>
@@ -22290,7 +22320,7 @@ 
           <!-- vtkPixelExtent& std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::back() -->
           <function-decl name='back' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE4backEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='695' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- vtkPixelExtent& -->
             <return type-id='type-id-50'/>
           </function-decl>
@@ -22299,7 +22329,7 @@ 
           <!-- const vtkPixelExtent& std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::back() -->
           <function-decl name='back' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE4backEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='703' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- const vtkPixelExtent& -->
             <return type-id='type-id-49'/>
           </function-decl>
@@ -22308,7 +22338,7 @@ 
           <!-- vtkPixelExtent* std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::data() -->
           <function-decl name='data' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE4dataEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='714' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- vtkPixelExtent* -->
             <return type-id='type-id-48'/>
           </function-decl>
@@ -22317,7 +22347,7 @@ 
           <!-- const vtkPixelExtent* std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::data() -->
           <function-decl name='data' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE4dataEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='718' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- const vtkPixelExtent* -->
             <return type-id='type-id-52'/>
           </function-decl>
@@ -22326,7 +22356,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::push_back(const vtkPixelExtent&) -->
           <function-decl name='push_back' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE9push_backERKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='733' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'const vtkPixelExtent&' -->
             <parameter type-id='type-id-49'/>
             <!-- void -->
@@ -22337,7 +22367,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::pop_back() -->
           <function-decl name='pop_back' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE8pop_backEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='764' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
@@ -22346,22 +22376,22 @@ 
           <!-- __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::insert(__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >, const vtkPixelExtent&) -->
           <function-decl name='insert' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE6insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >' -->
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-687'/>
             <!-- parameter of type 'const vtkPixelExtent&' -->
             <parameter type-id='type-id-49'/>
             <!-- class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-            <return type-id='type-id-685'/>
+            <return type-id='type-id-687'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::insert(__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >, unsigned long int, const vtkPixelExtent&) -->
           <function-decl name='insert' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE6insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EEmRKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >' -->
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-687'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -22374,33 +22404,33 @@ 
           <!-- __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::erase(__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >) -->
           <function-decl name='erase' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE5eraseEN9__gnu_cxx17__normal_iteratorIPS0_S2_EE' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >' -->
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-687'/>
             <!-- class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-            <return type-id='type-id-685'/>
+            <return type-id='type-id-687'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::erase(__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >, __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >) -->
           <function-decl name='erase' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE5eraseEN9__gnu_cxx17__normal_iteratorIPS0_S2_EES6_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >' -->
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-687'/>
             <!-- parameter of type 'class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >' -->
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-687'/>
             <!-- class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-            <return type-id='type-id-685'/>
+            <return type-id='type-id-687'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::swap(std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
           <function-decl name='swap' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE4swapERS2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='929' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
-            <parameter type-id='type-id-661'/>
+            <parameter type-id='type-id-663'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
@@ -22409,7 +22439,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::clear() -->
           <function-decl name='clear' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE5clearEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='950' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
@@ -22418,7 +22448,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_fill_initialize(unsigned long int, const vtkPixelExtent&) -->
           <function-decl name='_M_fill_initialize' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE18_M_fill_initializeEmRKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1033' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -22431,7 +22461,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_fill_assign(unsigned long int, const vtkPixelExtent&) -->
           <function-decl name='_M_fill_assign' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE14_M_fill_assignEmRKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -22444,9 +22474,9 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_fill_insert(__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >, unsigned long int, const vtkPixelExtent&) -->
           <function-decl name='_M_fill_insert' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EEmRKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='372' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >' -->
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-687'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -22459,9 +22489,9 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_insert_aux(__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >, const vtkPixelExtent&) -->
           <function-decl name='_M_insert_aux' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='295' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > >' -->
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-687'/>
             <!-- parameter of type 'const vtkPixelExtent&' -->
             <parameter type-id='type-id-49'/>
             <!-- void -->
@@ -22472,7 +22502,7 @@ 
           <!-- size_t std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_check_len(unsigned long int, const char*) -->
           <function-decl name='_M_check_len' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE12_M_check_lenEmPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1134' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const char*' -->
@@ -22485,7 +22515,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_erase_at_end(vtkPixelExtent*) -->
           <function-decl name='_M_erase_at_end' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE15_M_erase_at_endEPS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1148' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'vtkPixelExtent*' -->
             <parameter type-id='type-id-48'/>
             <!-- void -->
@@ -22496,7 +22526,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_range_initialize<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::forward_iterator_tag) -->
           <function-decl name='_M_range_initialize&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1018' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-145'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
@@ -22511,7 +22541,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_initialize_dispatch<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::__false_type) -->
           <function-decl name='_M_initialize_dispatch&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='997' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-145'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
@@ -22526,7 +22556,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::vector<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, const std::allocator<vtkPixelExtent>&) -->
           <function-decl name='vector&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='297' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-145'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
@@ -22539,16 +22569,16 @@ 
         </member-function>
       </class-decl>
       <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > -->
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-687'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-689'/>
       <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > -->
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-688'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-690'/>
     </namespace-decl>
     <!-- namespace __gnu_cxx -->
     <namespace-decl name='__gnu_cxx'>
       <!-- class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-      <class-decl name='__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-685'/>
+      <class-decl name='__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-687'/>
       <!-- class __gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-      <class-decl name='__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-686'/>
+      <class-decl name='__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-688'/>
     </namespace-decl>
     <!-- namespace vtkSurfaceLICPainterUtil -->
     <namespace-decl name='vtkSurfaceLICPainterUtil'>
@@ -22564,9 +22594,9 @@ 
         <!-- parameter of type 'double' -->
         <parameter type-id='type-id-15'/>
         <!-- parameter of type 'const double&' -->
-        <parameter type-id='type-id-629'/>
+        <parameter type-id='type-id-631'/>
         <!-- parameter of type 'const double&' -->
-        <parameter type-id='type-id-629'/>
+        <parameter type-id='type-id-631'/>
         <!-- double -->
         <return type-id='type-id-15'/>
       </function-decl>
@@ -22602,16 +22632,16 @@ 
         <return type-id='type-id-26'/>
       </function-decl>
       <!-- class vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface -->
-      <class-decl name='RandomNumberGeneratorInterface' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='246' column='1' id='type-id-654'>
+      <class-decl name='RandomNumberGeneratorInterface' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='246' column='1' id='type-id-656'>
         <data-member access='private' layout-offset-in-bits='0'>
           <!-- vtkMinimalStandardRandomSequence* vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::RNG -->
-          <var-decl name='RNG' type-id='type-id-673' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='289' column='1'/>
+          <var-decl name='RNG' type-id='type-id-675' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='289' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::RandomNumberGeneratorInterface() -->
           <function-decl name='RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-680' is-artificial='yes'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
@@ -22620,7 +22650,7 @@ 
           <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::~RandomNumberGeneratorInterface(int) -->
           <function-decl name='~RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-680' is-artificial='yes'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -22631,7 +22661,7 @@ 
           <!-- void vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::SetSeed(int) -->
           <function-decl name='SetSeed' mangled-name='_ZN24vtkSurfaceLICPainterUtil30RandomNumberGeneratorInterface7SetSeedEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-680' is-artificial='yes'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -22642,7 +22672,7 @@ 
           <!-- double vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::GetRandomNumber() -->
           <function-decl name='GetRandomNumber' mangled-name='_ZN24vtkSurfaceLICPainterUtil30RandomNumberGeneratorInterface15GetRandomNumberEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='273' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-680' is-artificial='yes'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
             <!-- double -->
             <return type-id='type-id-15'/>
           </function-decl>
@@ -22651,9 +22681,9 @@ 
           <!-- void vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::operator=(const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface&) -->
           <function-decl name='operator=' mangled-name='_ZN24vtkSurfaceLICPainterUtil30RandomNumberGeneratorInterfaceaSERKS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='285' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-680' is-artificial='yes'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
             <!-- parameter of type 'const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface&' -->
-            <parameter type-id='type-id-656'/>
+            <parameter type-id='type-id-658'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
@@ -22662,19 +22692,19 @@ 
           <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::RandomNumberGeneratorInterface(const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface&) -->
           <function-decl name='RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-680' is-artificial='yes'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
             <!-- parameter of type 'const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface&' -->
-            <parameter type-id='type-id-656'/>
+            <parameter type-id='type-id-658'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- class vtkSurfaceLICPainterUtil::RandomNoise2D -->
-      <class-decl name='RandomNoise2D' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='299' column='1' id='type-id-678'>
+      <class-decl name='RandomNoise2D' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='299' column='1' id='type-id-680'>
           <member-type access='private'>
             <!-- enum vtkSurfaceLICPainterUtil::RandomNoise2D::__anonymous_enum__ -->
-            <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='319' column='1' id='type-id-689'>
+            <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='319' column='1' id='type-id-691'>
               <underlying-type type-id='type-id-24'/>
               <enumerator name='UNIFORM' value='0'/>
               <enumerator name='GAUSSIAN' value='1'/>
@@ -22683,17 +22713,17 @@ 
           </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
           <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface vtkSurfaceLICPainterUtil::RandomNoise2D::ValueGen -->
-          <var-decl name='ValueGen' type-id='type-id-654' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='390' column='1'/>
+          <var-decl name='ValueGen' type-id='type-id-656' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='390' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
           <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface vtkSurfaceLICPainterUtil::RandomNoise2D::ProbGen -->
-          <var-decl name='ProbGen' type-id='type-id-654' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='391' column='1'/>
+          <var-decl name='ProbGen' type-id='type-id-656' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='391' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <!-- vtkSurfaceLICPainterUtil::RandomNoise2D::RandomNoise2D() -->
           <function-decl name='RandomNoise2D' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='301' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
@@ -22702,7 +22732,7 @@ 
           <!-- float* vtkSurfaceLICPainterUtil::RandomNoise2D::Generate(int, int&, int&, float, float, int, double, float, int) -->
           <function-decl name='Generate' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D8GenerateEiRiS1_ffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='324' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <!-- parameter of type 'int' -->
             <parameter type-id='type-id-17'/>
             <!-- parameter of type 'int&' -->
@@ -22729,9 +22759,9 @@ 
           <!-- void vtkSurfaceLICPainterUtil::RandomNoise2D::DeleteValues(unsigned char*) -->
           <function-decl name='DeleteValues' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D12DeleteValuesEPh' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <!-- parameter of type 'unsigned char*' -->
-            <parameter type-id='type-id-663'/>
+            <parameter type-id='type-id-665'/>
             <!-- void -->
             <return type-id='type-id-26'/>
           </function-decl>
@@ -22740,7 +22770,7 @@ 
           <!-- float* vtkSurfaceLICPainterUtil::RandomNoise2D::GenerateUniform(int, int, float, float, int, double, float, int) -->
           <function-decl name='GenerateUniform' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D15GenerateUniformEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='342' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <!-- parameter of type 'int' -->
             <parameter type-id='type-id-17'/>
             <!-- parameter of type 'int' -->
@@ -22765,7 +22795,7 @@ 
           <!-- float* vtkSurfaceLICPainterUtil::RandomNoise2D::GenerateGaussian(int, int, float, float, int, double, float, int) -->
           <function-decl name='GenerateGaussian' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D16GenerateGaussianEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <!-- parameter of type 'int' -->
             <parameter type-id='type-id-17'/>
             <!-- parameter of type 'int' -->
@@ -22790,7 +22820,7 @@ 
           <!-- float* vtkSurfaceLICPainterUtil::RandomNoise2D::GeneratePerlin(int, int, float, float, int, double, float, int) -->
           <function-decl name='GeneratePerlin' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D14GeneratePerlinEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <!-- parameter of type 'int' -->
             <parameter type-id='type-id-17'/>
             <!-- parameter of type 'int' -->
@@ -22815,7 +22845,7 @@ 
           <!-- int vtkSurfaceLICPainterUtil::RandomNoise2D::ShouldGenerateValue(double) -->
           <function-decl name='ShouldGenerateValue' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D19ShouldGenerateValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <!-- parameter of type 'double' -->
             <parameter type-id='type-id-15'/>
             <!-- int -->
@@ -22826,7 +22856,7 @@ 
           <!-- void vtkSurfaceLICPainterUtil::RandomNoise2D::GetValidDimensionAndGrainSize(int, int&, int&) -->
           <function-decl name='GetValidDimensionAndGrainSize' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D29GetValidDimensionAndGrainSizeEiRiS1_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='387' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <!-- parameter of type 'int' -->
             <parameter type-id='type-id-17'/>
             <!-- parameter of type 'int&' -->
@@ -22840,10 +22870,10 @@ 
       </class-decl>
     </namespace-decl>
     <!-- class vtkLightingHelper -->
-    <class-decl name='vtkLightingHelper' visibility='default' is-declaration-only='yes' id='type-id-671'>
+    <class-decl name='vtkLightingHelper' visibility='default' is-declaration-only='yes' id='type-id-673'>
         <member-type access='private'>
           <!-- enum vtkLightingHelper::__anonymous_enum__ -->
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkLightingHelper.h' line='42' column='1' id='type-id-690'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkLightingHelper.h' line='42' column='1' id='type-id-692'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='VTK_MAX_LIGHTS' value='8'/>
           </enum-decl>
@@ -22852,14 +22882,14 @@ 
         <!-- void vtkLightingHelper::EncodeLightState() -->
         <function-decl name='EncodeLightState' mangled-name='_ZN17vtkLightingHelper16EncodeLightStateEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkLightingHelper.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-606' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkMath -->
-    <class-decl name='vtkMath' visibility='default' is-declaration-only='yes' id='type-id-691'>
+    <class-decl name='vtkMath' visibility='default' is-declaration-only='yes' id='type-id-693'>
       <member-function access='private' static='yes'>
         <!-- void vtkMath::UninitializeBounds() -->
         <function-decl name='UninitializeBounds' mangled-name='_ZN7vtkMath18UninitializeBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkMath.h' line='849' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -22871,43 +22901,43 @@ 
       </member-function>
     </class-decl>
     <!-- class vtkCompositeDataSet -->
-    <class-decl name='vtkCompositeDataSet' visibility='default' is-declaration-only='yes' id='type-id-667'>
+    <class-decl name='vtkCompositeDataSet' visibility='default' is-declaration-only='yes' id='type-id-669'>
       <member-function access='private' static='yes'>
         <!-- vtkCompositeDataSet* vtkCompositeDataSet::SafeDownCast() -->
         <function-decl name='SafeDownCast' mangled-name='_ZN19vtkCompositeDataSet12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkCompositeDataSet.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-66'/>
           <!-- vtkCompositeDataSet* -->
-          <return type-id='type-id-668'/>
+          <return type-id='type-id-670'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkFieldData -->
-    <class-decl name='vtkFieldData' visibility='default' is-declaration-only='yes' id='type-id-669'>
+    <class-decl name='vtkFieldData' visibility='default' is-declaration-only='yes' id='type-id-671'>
       <member-function access='private'>
         <!-- int vtkFieldData::GetNumberOfArrays() -->
         <function-decl name='GetNumberOfArrays' mangled-name='_ZN12vtkFieldData17GetNumberOfArraysEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkFieldData.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkFieldData*' -->
-          <parameter type-id='type-id-670' is-artificial='yes'/>
+          <parameter type-id='type-id-672' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkTimerLog -->
-    <class-decl name='vtkTimerLog' visibility='default' is-declaration-only='yes' id='type-id-681'>
+    <class-decl name='vtkTimerLog' visibility='default' is-declaration-only='yes' id='type-id-683'>
       <data-member access='protected' static='yes'>
         <!-- static int vtkTimerLog::Logging -->
         <var-decl name='Logging' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/System/vtkTimerLog.h' line='169' column='1'/>
       </data-member>
     </class-decl>
     <!-- class vtkUniformVariables -->
-    <class-decl name='vtkUniformVariables' visibility='default' is-declaration-only='yes' id='type-id-682'>
+    <class-decl name='vtkUniformVariables' visibility='default' is-declaration-only='yes' id='type-id-684'>
       <member-function access='private'>
         <!-- void vtkUniformVariables::SetUniformft<int>(const char*, int, int*) -->
         <function-decl name='SetUniformft&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIiEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- parameter of type 'int' -->
@@ -22922,7 +22952,7 @@ 
         <!-- void vtkUniformVariables::SetUniformft<double>(const char*, int, double*) -->
         <function-decl name='SetUniformft&lt;double&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIdEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- parameter of type 'int' -->
@@ -22937,7 +22967,7 @@ 
         <!-- void vtkUniformVariables::SetUniformft<float>(const char*, int, float*) -->
         <function-decl name='SetUniformft&lt;float&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIfEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- parameter of type 'int' -->
@@ -22952,7 +22982,7 @@ 
         <!-- void vtkUniformVariables::SetUniformit<int>(const char*, int, int*) -->
         <function-decl name='SetUniformit&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformitIiEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- parameter of type 'int' -->
@@ -22967,7 +22997,7 @@ 
         <!-- void vtkUniformVariables::SetUniformft<int>(const char*, int) -->
         <function-decl name='SetUniformft&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIiEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- parameter of type 'int' -->
@@ -22980,7 +23010,7 @@ 
         <!-- void vtkUniformVariables::SetUniformft<double>(const char*, double) -->
         <function-decl name='SetUniformft&lt;double&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIdEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- parameter of type 'double' -->
@@ -22993,7 +23023,7 @@ 
         <!-- void vtkUniformVariables::SetUniformft<float>(const char*, float) -->
         <function-decl name='SetUniformft&lt;float&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIfEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- parameter of type 'float' -->
@@ -23006,7 +23036,7 @@ 
         <!-- void vtkUniformVariables::SetUniformit<int>(const char*, int) -->
         <function-decl name='SetUniformit&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformitIiEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-68'/>
           <!-- parameter of type 'int' -->
@@ -23017,35 +23047,35 @@ 
       </member-function>
     </class-decl>
     <!-- class vtkScalarsToColors -->
-    <class-decl name='vtkScalarsToColors' visibility='default' is-declaration-only='yes' id='type-id-676'>
+    <class-decl name='vtkScalarsToColors' visibility='default' is-declaration-only='yes' id='type-id-678'>
       <member-function access='private' static='yes'>
         <!-- vtkScalarsToColors* vtkScalarsToColors::SafeDownCast() -->
         <function-decl name='SafeDownCast' mangled-name='_ZN18vtkScalarsToColors12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkScalarsToColors.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-66'/>
           <!-- vtkScalarsToColors* -->
-          <return type-id='type-id-677'/>
+          <return type-id='type-id-679'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkBackgroundColorMonitor -->
-    <class-decl name='vtkBackgroundColorMonitor' visibility='default' is-declaration-only='yes' id='type-id-664'/>
+    <class-decl name='vtkBackgroundColorMonitor' visibility='default' is-declaration-only='yes' id='type-id-666'/>
     <!-- class vtkCellData -->
-    <class-decl name='vtkCellData' visibility='default' is-declaration-only='yes' id='type-id-665'/>
+    <class-decl name='vtkCellData' visibility='default' is-declaration-only='yes' id='type-id-667'/>
     <!-- class vtkColorMaterialHelper -->
-    <class-decl name='vtkColorMaterialHelper' visibility='default' is-declaration-only='yes' id='type-id-666'/>
+    <class-decl name='vtkColorMaterialHelper' visibility='default' is-declaration-only='yes' id='type-id-668'/>
     <!-- class vtkMinimalStandardRandomSequence -->
-    <class-decl name='vtkMinimalStandardRandomSequence' visibility='default' is-declaration-only='yes' id='type-id-672'/>
+    <class-decl name='vtkMinimalStandardRandomSequence' visibility='default' is-declaration-only='yes' id='type-id-674'/>
     <!-- class vtkOpenGLLightMonitor -->
-    <class-decl name='vtkOpenGLLightMonitor' visibility='default' is-declaration-only='yes' id='type-id-674'/>
+    <class-decl name='vtkOpenGLLightMonitor' visibility='default' is-declaration-only='yes' id='type-id-676'/>
     <!-- class vtkOpenGLModelViewProjectionMonitor -->
-    <class-decl name='vtkOpenGLModelViewProjectionMonitor' visibility='default' is-declaration-only='yes' id='type-id-675'/>
+    <class-decl name='vtkOpenGLModelViewProjectionMonitor' visibility='default' is-declaration-only='yes' id='type-id-677'/>
     <!-- struct vtkWindow -->
-    <class-decl name='vtkWindow' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-684'/>
+    <class-decl name='vtkWindow' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-686'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- class vtkTextureIO -->
-    <class-decl name='vtkTextureIO' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='33' column='1' id='type-id-692'>
+    <class-decl name='vtkTextureIO' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='33' column='1' id='type-id-694'>
       <member-function access='private' static='yes'>
         <!-- void vtkTextureIO::Write(vtkTextureObject*, const unsigned int*, const double*) -->
         <function-decl name='Write' mangled-name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectPKjPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectPKjPKd'>
@@ -23056,7 +23086,7 @@ 
           <!-- parameter of type 'const unsigned int*' -->
           <parameter type-id='type-id-57'/>
           <!-- parameter of type 'const double*' -->
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-568'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
@@ -23071,7 +23101,7 @@ 
           <!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
           <parameter type-id='type-id-178'/>
           <!-- parameter of type 'const double*' -->
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-568'/>
           <!-- void -->
           <return type-id='type-id-26'/>
         </function-decl>
diff --git a/tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi b/tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi
index 0b2acfcc..48221737 100644
--- a/tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi
+++ b/tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi
@@ -28746,6 +28746,8 @@ 
     </class-decl>
     <!-- typedef __time_t time_t -->
     <typedef-decl name='time_t' type-id='type-id-1103' filepath='/usr/include/time.h' line='76' column='1' id='type-id-1092'/>
+    <!-- typedef long int __time_t -->
+    <typedef-decl name='__time_t' type-id='type-id-285' filepath='/usr/include/bits/types.h' line='149' column='1' id='type-id-1103'/>
     <!-- struct siginfo -->
     <class-decl name='siginfo' size-in-bits='1024' is-struct='yes' visibility='default' filepath='/usr/include/bits/siginfo.h' line='52' column='1' id='type-id-1104'>
         <member-type access='public'>
@@ -28892,8 +28894,6 @@ 
         <var-decl name='_sifields' type-id='type-id-1105' visibility='default' filepath='/usr/include/bits/siginfo.h' line='107' column='1'/>
       </data-member>
     </class-decl>
-    <!-- typedef long int __time_t -->
-    <typedef-decl name='__time_t' type-id='type-id-285' filepath='/usr/include/bits/types.h' line='149' column='1' id='type-id-1103'/>
     <!-- class CpuProfiler -->
     <class-decl name='CpuProfiler' size-in-bits='704' visibility='default' filepath='src/profiler.cc' line='89' column='1' id='type-id-1115'>
       <data-member access='private' static='yes'>
diff --git a/tests/data/test-diff-dwarf-abixml/test0-pr19026-libvtkIOSQL-6.1.so.1-report-0.txt b/tests/data/test-diff-dwarf-abixml/test0-pr19026-libvtkIOSQL-6.1.so.1-report-0.txt
index e69de29b..7f1d3836 100644
--- a/tests/data/test-diff-dwarf-abixml/test0-pr19026-libvtkIOSQL-6.1.so.1-report-0.txt
+++ b/tests/data/test-diff-dwarf-abixml/test0-pr19026-libvtkIOSQL-6.1.so.1-report-0.txt
@@ -0,0 +1,32 @@ 
+Functions changes summary: 0 Removed, 9 Changed, 0 Added functions
+Variables changes summary: 0 Removed, 0 Changed, 0 Added variable
+
+9 functions with some indirect sub-type change:
+
+  [C] 'function vtkSQLDatabaseSchemaInternals::Column* std::__uninitialized_copy_a<vtkSQLDatabaseSchemaInternals::Column*, vtkSQLDatabaseSchemaInternals::Column*, vtkSQLDatabaseSchemaInternals::Column>(vtkSQLDatabaseSchemaInternals::Column*, vtkSQLDatabaseSchemaInternals::Column*, vtkSQLDatabaseSchemaInternals::Column*, std::allocator<vtkSQLDatabaseSchemaInternals::Column>&)' at stl_uninitialized.h:254:1 has some indirect sub-type changes:
+    function vtkSQLDatabaseSchemaInternals::Column* std::__uninitialized_copy_a<vtkSQLDatabaseSchemaInternals::Column*, vtkSQLDatabaseSchemaInternals::Column*, vtkSQLDatabaseSchemaInternals::Column>(vtkSQLDatabaseSchemaInternals::Column*, vtkSQLDatabaseSchemaInternals::Column*, vtkSQLDatabaseSchemaInternals::Column*, std::allocator<vtkSQLDatabaseSchemaInternals::Column>&) is not declared inline anymore
+
+  [C] 'function vtkSQLDatabaseSchemaInternals::Index* std::__uninitialized_copy_a<vtkSQLDatabaseSchemaInternals::Index*, vtkSQLDatabaseSchemaInternals::Index*, vtkSQLDatabaseSchemaInternals::Index>(vtkSQLDatabaseSchemaInternals::Index*, vtkSQLDatabaseSchemaInternals::Index*, vtkSQLDatabaseSchemaInternals::Index*, std::allocator<vtkSQLDatabaseSchemaInternals::Index>&)' at stl_uninitialized.h:254:1 has some indirect sub-type changes:
+    function vtkSQLDatabaseSchemaInternals::Index* std::__uninitialized_copy_a<vtkSQLDatabaseSchemaInternals::Index*, vtkSQLDatabaseSchemaInternals::Index*, vtkSQLDatabaseSchemaInternals::Index>(vtkSQLDatabaseSchemaInternals::Index*, vtkSQLDatabaseSchemaInternals::Index*, vtkSQLDatabaseSchemaInternals::Index*, std::allocator<vtkSQLDatabaseSchemaInternals::Index>&) is not declared inline anymore
+
+  [C] 'function vtkSQLDatabaseSchemaInternals::Option* std::__uninitialized_copy_a<vtkSQLDatabaseSchemaInternals::Option*, vtkSQLDatabaseSchemaInternals::Option*, vtkSQLDatabaseSchemaInternals::Option>(vtkSQLDatabaseSchemaInternals::Option*, vtkSQLDatabaseSchemaInternals::Option*, vtkSQLDatabaseSchemaInternals::Option*, std::allocator<vtkSQLDatabaseSchemaInternals::Option>&)' at stl_uninitialized.h:254:1 has some indirect sub-type changes:
+    function vtkSQLDatabaseSchemaInternals::Option* std::__uninitialized_copy_a<vtkSQLDatabaseSchemaInternals::Option*, vtkSQLDatabaseSchemaInternals::Option*, vtkSQLDatabaseSchemaInternals::Option>(vtkSQLDatabaseSchemaInternals::Option*, vtkSQLDatabaseSchemaInternals::Option*, vtkSQLDatabaseSchemaInternals::Option*, std::allocator<vtkSQLDatabaseSchemaInternals::Option>&) is not declared inline anymore
+
+  [C] 'function vtkSQLDatabaseSchemaInternals::Trigger* std::__uninitialized_copy_a<vtkSQLDatabaseSchemaInternals::Trigger*, vtkSQLDatabaseSchemaInternals::Trigger*, vtkSQLDatabaseSchemaInternals::Trigger>(vtkSQLDatabaseSchemaInternals::Trigger*, vtkSQLDatabaseSchemaInternals::Trigger*, vtkSQLDatabaseSchemaInternals::Trigger*, std::allocator<vtkSQLDatabaseSchemaInternals::Trigger>&)' at stl_uninitialized.h:254:1 has some indirect sub-type changes:
+    function vtkSQLDatabaseSchemaInternals::Trigger* std::__uninitialized_copy_a<vtkSQLDatabaseSchemaInternals::Trigger*, vtkSQLDatabaseSchemaInternals::Trigger*, vtkSQLDatabaseSchemaInternals::Trigger>(vtkSQLDatabaseSchemaInternals::Trigger*, vtkSQLDatabaseSchemaInternals::Trigger*, vtkSQLDatabaseSchemaInternals::Trigger*, std::allocator<vtkSQLDatabaseSchemaInternals::Trigger>&) is not declared inline anymore
+
+  [C] 'function vtkStdString* std::__uninitialized_copy_a<vtkStdString*, vtkStdString*, vtkStdString>(vtkStdString*, vtkStdString*, vtkStdString*, std::allocator<vtkStdString>&)' at stl_uninitialized.h:254:1 has some indirect sub-type changes:
+    function vtkStdString* std::__uninitialized_copy_a<vtkStdString*, vtkStdString*, vtkStdString>(vtkStdString*, vtkStdString*, vtkStdString*, std::allocator<vtkStdString>&) is not declared inline anymore
+
+  [C] 'function void std::__uninitialized_fill_n_a<vtkSQLDatabaseSchemaInternals::Column*, long unsigned int, vtkSQLDatabaseSchemaInternals::Column, vtkSQLDatabaseSchemaInternals::Column>(vtkSQLDatabaseSchemaInternals::Column*, unsigned long int, const vtkSQLDatabaseSchemaInternals::Column&, std::allocator<vtkSQLDatabaseSchemaInternals::Column>&)' at stl_uninitialized.h:315:1 has some indirect sub-type changes:
+    function void std::__uninitialized_fill_n_a<vtkSQLDatabaseSchemaInternals::Column*, long unsigned int, vtkSQLDatabaseSchemaInternals::Column, vtkSQLDatabaseSchemaInternals::Column>(vtkSQLDatabaseSchemaInternals::Column*, unsigned long int, const vtkSQLDatabaseSchemaInternals::Column&, std::allocator<vtkSQLDatabaseSchemaInternals::Column>&) is not declared inline anymore
+
+  [C] 'function void std::__uninitialized_fill_n_a<vtkSQLDatabaseSchemaInternals::Index*, long unsigned int, vtkSQLDatabaseSchemaInternals::Index, vtkSQLDatabaseSchemaInternals::Index>(vtkSQLDatabaseSchemaInternals::Index*, unsigned long int, const vtkSQLDatabaseSchemaInternals::Index&, std::allocator<vtkSQLDatabaseSchemaInternals::Index>&)' at stl_uninitialized.h:315:1 has some indirect sub-type changes:
+    function void std::__uninitialized_fill_n_a<vtkSQLDatabaseSchemaInternals::Index*, long unsigned int, vtkSQLDatabaseSchemaInternals::Index, vtkSQLDatabaseSchemaInternals::Index>(vtkSQLDatabaseSchemaInternals::Index*, unsigned long int, const vtkSQLDatabaseSchemaInternals::Index&, std::allocator<vtkSQLDatabaseSchemaInternals::Index>&) is not declared inline anymore
+
+  [C] 'function void std::__uninitialized_fill_n_a<vtkSQLDatabaseSchemaInternals::Option*, long unsigned int, vtkSQLDatabaseSchemaInternals::Option, vtkSQLDatabaseSchemaInternals::Option>(vtkSQLDatabaseSchemaInternals::Option*, unsigned long int, const vtkSQLDatabaseSchemaInternals::Option&, std::allocator<vtkSQLDatabaseSchemaInternals::Option>&)' at stl_uninitialized.h:315:1 has some indirect sub-type changes:
+    function void std::__uninitialized_fill_n_a<vtkSQLDatabaseSchemaInternals::Option*, long unsigned int, vtkSQLDatabaseSchemaInternals::Option, vtkSQLDatabaseSchemaInternals::Option>(vtkSQLDatabaseSchemaInternals::Option*, unsigned long int, const vtkSQLDatabaseSchemaInternals::Option&, std::allocator<vtkSQLDatabaseSchemaInternals::Option>&) is not declared inline anymore
+
+  [C] 'function void std::__uninitialized_fill_n_a<vtkSQLDatabaseSchemaInternals::Trigger*, long unsigned int, vtkSQLDatabaseSchemaInternals::Trigger, vtkSQLDatabaseSchemaInternals::Trigger>(vtkSQLDatabaseSchemaInternals::Trigger*, unsigned long int, const vtkSQLDatabaseSchemaInternals::Trigger&, std::allocator<vtkSQLDatabaseSchemaInternals::Trigger>&)' at stl_uninitialized.h:315:1 has some indirect sub-type changes:
+    function void std::__uninitialized_fill_n_a<vtkSQLDatabaseSchemaInternals::Trigger*, long unsigned int, vtkSQLDatabaseSchemaInternals::Trigger, vtkSQLDatabaseSchemaInternals::Trigger>(vtkSQLDatabaseSchemaInternals::Trigger*, unsigned long int, const vtkSQLDatabaseSchemaInternals::Trigger&, std::allocator<vtkSQLDatabaseSchemaInternals::Trigger>&) is not declared inline anymore
+
diff --git a/tests/data/test-read-dwarf/test15-pr18892.so.abi b/tests/data/test-read-dwarf/test15-pr18892.so.abi
index a90671de..e6c2cb93 100644
--- a/tests/data/test-read-dwarf/test15-pr18892.so.abi
+++ b/tests/data/test-read-dwarf/test15-pr18892.so.abi
@@ -2343,10 +2343,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='RawWrite' mangled-name='_ZN11__sanitizer8RawWriteEPKc' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
     <function-type size-in-bits='64' id='type-id-80'>
       <parameter type-id='type-id-83'/>
@@ -2631,10 +2627,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='ReportErrorSummary' mangled-name='_ZN11__sanitizer18ReportErrorSummaryEPKc' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.cc' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
       <var-decl name='SanitizerToolName' type-id='type-id-2' mangled-name='_ZN11__sanitizer17SanitizerToolNameE' visibility='default' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.cc' line='20' column='1'/>
       <var-decl name='report_fd' type-id='type-id-118' mangled-name='_ZN11__sanitizer9report_fdE' visibility='default' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.cc' line='33' column='1'/>
       <var-decl name='log_to_file' type-id='type-id-116' mangled-name='_ZN11__sanitizer11log_to_fileE' visibility='default' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.cc' line='36' column='1'/>
@@ -2990,12 +2982,6 @@ 
         <parameter type-id='type-id-83'/>
         <return type-id='type-id-116'/>
       </function-decl>
-      <function-decl name='internal_memcmp' mangled-name='_ZN11__sanitizer15internal_memcmpEPKvS1_m' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.cc' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1' name='s1' filepath='../../.././libsanitizer/tsan/tsan_interceptors.cc' line='633' column='1'/>
-        <parameter type-id='type-id-1' name='s2' filepath='../../.././libsanitizer/tsan/tsan_interceptors.cc' line='633' column='1'/>
-        <parameter type-id='type-id-83' name='n' filepath='../../.././libsanitizer/tsan/tsan_interceptors.cc' line='633' column='1'/>
-        <return type-id='type-id-5'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/sanitizer_common/sanitizer_libignore.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/sanitizer_common' language='LANG_C_plus_plus'>
@@ -3448,51 +3434,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='internal_open' mangled-name='_ZN11__sanitizer13internal_openEPKci' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='95' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2'/>
-        <parameter type-id='type-id-5'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='internal_open' mangled-name='_ZN11__sanitizer13internal_openEPKcij' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2'/>
-        <parameter type-id='type-id-5'/>
-        <parameter type-id='type-id-170'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='internal_stat' mangled-name='_ZN11__sanitizer13internal_statEPKcPv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2'/>
-        <parameter type-id='type-id-1'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='internal_fstat' mangled-name='_ZN11__sanitizer14internal_fstatEiPv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-118'/>
-        <parameter type-id='type-id-1'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='internal_readlink' mangled-name='_ZN11__sanitizer17internal_readlinkEPKcPcm' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2'/>
-        <parameter type-id='type-id-25'/>
-        <parameter type-id='type-id-83'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='internal_execve' mangled-name='_ZN11__sanitizer15internal_execveEPKcPKPcS4_' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='201' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2'/>
-        <parameter type-id='type-id-160'/>
-        <parameter type-id='type-id-160'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='internal_getdents' mangled-name='_ZN11__sanitizer17internal_getdentsEiPNS_12linux_direntEj' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='590' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-118'/>
-        <parameter type-id='type-id-158'/>
-        <parameter type-id='type-id-129'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='internal_lseek' mangled-name='_ZN11__sanitizer14internal_lseekEiyi' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux.cc' line='594' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-118'/>
-        <parameter type-id='type-id-171'/>
-        <parameter type-id='type-id-5'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
     </namespace-decl>
     <function-type size-in-bits='64' id='type-id-166'>
       <parameter type-id='type-id-5'/>
@@ -3591,16 +3532,6 @@ 
         <parameter type-id='type-id-198'/>
         <return type-id='type-id-83'/>
       </function-decl>
-      <function-decl name='Unwind_GetIP' mangled-name='_ZN11__sanitizer12Unwind_GetIPEP15_Unwind_Context' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux_libcdep.cc' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-192'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='GetTlsSize' mangled-name='_ZN11__sanitizer10GetTlsSizeEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux_libcdep.cc' line='204' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='ThreadSelf' mangled-name='_ZN11__sanitizer10ThreadSelfEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_linux_libcdep.cc' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-83'/>
-      </function-decl>
     </namespace-decl>
     <function-decl name='_Unwind_GetIP' filepath='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/host-x86_64-unknown-linux-gnu/gcc/include/unwind.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-192'/>
@@ -4542,9 +4473,6 @@ 
         <parameter type-id='type-id-225'/>
         <return type-id='type-id-26'/>
       </function-decl>
-      <function-decl name='StackDepotGetStats' mangled-name='_ZN11__sanitizer18StackDepotGetStatsEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_stackdepot.cc' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-221'/>
-      </function-decl>
     </namespace-decl>
     <function-type size-in-bits='64' id='type-id-224'>
       <parameter type-id='type-id-232'/>
@@ -4706,11 +4634,6 @@ 
         <parameter type-id='type-id-2'/>
         <return type-id='type-id-116'/>
       </function-decl>
-      <function-decl name='TemplateMatch' mangled-name='_ZN11__sanitizer13TemplateMatchEPcPKc' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_suppressions.cc' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-25'/>
-        <parameter type-id='type-id-2'/>
-        <return type-id='type-id-116'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/sanitizer_common/sanitizer_symbolizer.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/sanitizer_common' language='LANG_C_plus_plus'>
@@ -5127,12 +5050,6 @@ 
         <return type-id='type-id-1'/>
       </function-decl>
       <typedef-decl name='u64' type-id='type-id-136' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_internal_defs.h' line='69' column='1' id='type-id-173'/>
-      <function-decl name='internal_memcpy' mangled-name='_ZN11__sanitizer15internal_memcpyEPvPKvm' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1'/>
-        <parameter type-id='type-id-1'/>
-        <parameter type-id='type-id-83'/>
-        <return type-id='type-id-1'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__tsan'>
       <function-decl name='max&lt;long unsigned int&gt;' filepath='../../.././libsanitizer/tsan/tsan_defs.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -5385,19 +5302,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='build_consistency_release' mangled-name='_ZN6__tsan25build_consistency_releaseEv' filepath='../../.././libsanitizer/tsan/tsan_defs.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <function-decl name='build_consistency_nostats' mangled-name='_ZN6__tsan25build_consistency_nostatsEv' filepath='../../.././libsanitizer/tsan/tsan_defs.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <function-decl name='build_consistency_shadow8' mangled-name='_ZN6__tsan25build_consistency_shadow8Ev' filepath='../../.././libsanitizer/tsan/tsan_defs.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <function-decl name='internal_free' mangled-name='_ZN6__tsan13internal_freeEPv' filepath='../../.././libsanitizer/tsan/tsan_mman.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_fd.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -7107,17 +7011,6 @@ 
       </class-decl>
       <typedef-decl name='OFF64_T' type-id='type-id-173' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_internal_defs.h' line='85' column='1' id='type-id-379'/>
       <typedef-decl name='OFF_T' type-id='type-id-173' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_internal_defs.h' line='81' column='1' id='type-id-171'/>
-      <function-decl name='AllocatorReturnNull' mangled-name='_ZN11__sanitizer19AllocatorReturnNullEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_allocator.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-1'/>
-      </function-decl>
-      <function-decl name='GetPageSizeCached' mangled-name='_ZN11__sanitizer17GetPageSizeCachedEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='internal_strchr' mangled-name='_ZN11__sanitizer15internal_strchrEPKci' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2'/>
-        <parameter type-id='type-id-5'/>
-        <return type-id='type-id-25'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__tsan'>
       <function-decl name='RoundUp&lt;long unsigned int&gt;' filepath='../../.././libsanitizer/tsan/tsan_defs.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7338,19 +7231,6 @@ 
           <var-decl name='ctx' type-id='type-id-350' visibility='default' filepath='../../.././libsanitizer/tsan/tsan_interceptors.cc' line='118' column='1'/>
         </data-member>
       </class-decl>
-      <function-decl name='user_alloc' mangled-name='_ZN6__tsan10user_allocEPNS_11ThreadStateEmmm' filepath='../../.././libsanitizer/tsan/tsan_mman.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-348'/>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-83'/>
-        <return type-id='type-id-1'/>
-      </function-decl>
-      <function-decl name='FdClose' mangled-name='_ZN6__tsan7FdCloseEPNS_11ThreadStateEmi' filepath='../../.././libsanitizer/tsan/tsan_fd.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-348'/>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-5'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='std'>
       <class-decl name='nothrow_t' size-in-bits='8' is-struct='yes' visibility='default' filepath='../../.././libsanitizer/tsan/tsan_interceptors.cc' line='108' column='1' id='type-id-1009'/>
@@ -19054,39 +18934,6 @@ 
       <function-decl name='flags' mangled-name='_ZN6__tsan5flagsEv' filepath='../../.././libsanitizer/tsan/tsan_flags.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
         <return type-id='type-id-309'/>
       </function-decl>
-      <function-decl name='CTX' mangled-name='_ZN6__tsan3CTXEv' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='469' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-1207'/>
-      </function-decl>
-      <function-decl name='MemoryAccess' mangled-name='_ZN6__tsan12MemoryAccessEPNS_11ThreadStateEmmibb' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='647' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-348'/>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-5'/>
-        <parameter type-id='type-id-116'/>
-        <parameter type-id='type-id-116'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <function-decl name='FuncEntry' mangled-name='_ZN6__tsan9FuncEntryEPNS_11ThreadStateEm' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='693' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-348'/>
-        <parameter type-id='type-id-83'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <function-decl name='FuncExit' mangled-name='_ZN6__tsan8FuncExitEPNS_11ThreadStateE' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='694' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-348'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <function-decl name='AcquireImpl' mangled-name='_ZN6__tsan11AcquireImplEPNS_11ThreadStateEmPNS_9SyncClockE' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='722' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-348'/>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-285'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <function-decl name='ReleaseImpl' mangled-name='_ZN6__tsan11ReleaseImplEPNS_11ThreadStateEmPNS_9SyncClockE' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='723' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-348'/>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-285'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
     <function-decl name='__tsan_atomic8_load' mangled-name='__tsan_atomic8_load' filepath='../../.././libsanitizer/tsan/tsan_interface_atomic.cc' line='393' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='__tsan_atomic8_load'>
       <parameter type-id='type-id-1455' name='a' filepath='../../.././libsanitizer/tsan/tsan_interface_atomic.cc' line='393' column='1'/>
@@ -19676,10 +19523,6 @@ 
         <parameter type-id='type-id-83'/>
         <return type-id='type-id-1250'/>
       </function-decl>
-      <function-decl name='MD5_Init' mangled-name='_ZN6__tsan8MD5_InitEPNS_7MD5_CTXE' filepath='../../.././libsanitizer/tsan/tsan_md5.cc' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1499'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_mman.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -20489,9 +20332,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='internal_allocator' mangled-name='_ZN11__sanitizer18internal_allocatorEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_allocator_internal.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-1516'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__tsan'>
       <typedef-decl name='Allocator' type-id='type-id-1511' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='136' column='1' id='type-id-1524'/>
@@ -20522,9 +20362,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='allocator' mangled-name='_ZN6__tsan9allocatorEv' filepath='../../.././libsanitizer/tsan/tsan_mman.cc' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-1525'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_mutex.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -20598,9 +20435,6 @@ 
       <function-decl name='internal_sched_yield' mangled-name='_ZN11__sanitizer20internal_sched_yieldEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
         <return type-id='type-id-83'/>
       </function-decl>
-      <function-decl name='internal_sched_yield' mangled-name='_ZN11__sanitizer20internal_sched_yieldEv' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-83'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__tsan'>
       <function-decl name='InitializeMutex' mangled-name='_ZN6__tsan15InitializeMutexEv' filepath='../../.././libsanitizer/tsan/tsan_mutex.cc' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -21230,13 +21064,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='ReportErrorSummary' mangled-name='_ZN11__sanitizer18ReportErrorSummaryEPKcS1_iS1_' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2'/>
-        <parameter type-id='type-id-2'/>
-        <parameter type-id='type-id-5'/>
-        <parameter type-id='type-id-2'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__tsan'>
       <function-decl name='thread_name' filepath='../../.././libsanitizer/tsan/tsan_report.cc' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -22120,15 +21947,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='thread_name' mangled-name='_ZN6__tsan11thread_nameEPci' filepath='../../.././libsanitizer/tsan/tsan_report.cc' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-25'/>
-        <parameter type-id='type-id-5'/>
-        <return type-id='type-id-2'/>
-      </function-decl>
-      <function-decl name='FrameIsInternal' mangled-name='_ZN6__tsan15FrameIsInternalEPKNS_11ReportStackE' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='620' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1635'/>
-        <return type-id='type-id-116'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_rtl.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -22354,15 +22172,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='internal_strlen' mangled-name='_ZN11__sanitizer15internal_strlenEPKc' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='internal_iserror' mangled-name='_ZN11__sanitizer16internal_iserrorEmPi' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-30'/>
-        <return type-id='type-id-116'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__tsan'>
       <function-decl name='MapThreadTrace' filepath='../../.././libsanitizer/tsan/tsan_rtl.cc' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -22506,21 +22315,6 @@ 
         <parameter type-id='type-id-348'/>
         <return type-id='type-id-26'/>
       </function-decl>
-      <function-decl name='MapThreadTrace' mangled-name='_ZN6__tsan14MapThreadTraceEmm' filepath='../../.././libsanitizer/tsan/tsan_rtl.cc' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-83'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
-      <function-decl name='MemoryAccessImpl' mangled-name='_ZN6__tsan16MemoryAccessImplEPNS_11ThreadStateEmibbPyNS_6ShadowE' filepath='../../.././libsanitizer/tsan/tsan_rtl.cc' line='416' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-348'/>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-5'/>
-        <parameter type-id='type-id-116'/>
-        <parameter type-id='type-id-116'/>
-        <parameter type-id='type-id-1337'/>
-        <parameter type-id='type-id-1681'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
       <var-decl name='cur_thread_placeholder' type-id='type-id-1655' mangled-name='_ZN6__tsan22cur_thread_placeholderE' visibility='default' filepath='../../.././libsanitizer/tsan/tsan_rtl.cc' line='35' column='1'/>
     </namespace-decl>
     <function-decl name='__tsan_read1' mangled-name='__tsan_read1' filepath='../../.././libsanitizer/tsan/tsan_interface_inl.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='__tsan_read1'>
@@ -22638,12 +22432,6 @@ 
         <parameter type-id='type-id-83'/>
         <return type-id='type-id-26'/>
       </function-decl>
-      <function-decl name='ReleaseStoreImpl' mangled-name='_ZN6__tsan16ReleaseStoreImplEPNS_11ThreadStateEmPNS_9SyncClockE' filepath='../../.././libsanitizer/tsan/tsan_rtl_mutex.cc' line='327' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-348'/>
-        <parameter type-id='type-id-83'/>
-        <parameter type-id='type-id-285'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_rtl_report.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -23596,16 +23384,6 @@ 
           <var-decl name='count' type-id='type-id-5' visibility='default' filepath='../../.././libsanitizer/tsan/tsan_rtl_thread.cc' line='142' column='1'/>
         </data-member>
       </class-decl>
-      <function-decl name='ThreadTrace' mangled-name='_ZN6__tsan11ThreadTraceEi' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='752' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-5'/>
-        <return type-id='type-id-1707'/>
-      </function-decl>
-      <function-decl name='TraceSize' mangled-name='_ZN6__tsan9TraceSizeEv' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='750' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-83'/>
-      </function-decl>
-      <function-decl name='TraceParts' mangled-name='_ZN6__tsan10TracePartsEv' filepath='../../.././libsanitizer/tsan/tsan_rtl.h' line='751' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-83'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_stat.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -23640,10 +23418,6 @@ 
         <parameter type-id='type-id-1194'/>
         <return type-id='type-id-2'/>
       </function-decl>
-      <function-decl name='internal_close' mangled-name='_ZN11__sanitizer14internal_closeEi' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-118'/>
-        <return type-id='type-id-83'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__tsan'>
       <function-decl name='conv' filepath='../../.././libsanitizer/tsan/tsan_suppressions.cc' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -23662,10 +23436,6 @@ 
         <parameter type-id='type-id-896'/>
         <return type-id='type-id-83'/>
       </function-decl>
-      <function-decl name='conv' mangled-name='_ZN6__tsan4convENS_10ReportTypeE' filepath='../../.././libsanitizer/tsan/tsan_suppressions.cc' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1488'/>
-        <return type-id='type-id-1194'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_symbolize.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-ImG4Cf/gcc-4.9.2/x86_64-unknown-linux-gnu/libsanitizer/tsan' language='LANG_C_plus_plus'>
@@ -23991,17 +23761,6 @@ 
           <var-decl name='size' type-id='type-id-83' visibility='default' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_symbolizer.h' line='61' column='1'/>
         </data-member>
       </class-decl>
-      <function-decl name='internal_memset' mangled-name='_ZN11__sanitizer15internal_memsetEPvim' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_libc.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1'/>
-        <parameter type-id='type-id-5'/>
-        <parameter type-id='type-id-83'/>
-        <return type-id='type-id-1'/>
-      </function-decl>
-      <function-decl name='UnmapOrDie' mangled-name='_ZN11__sanitizer10UnmapOrDieEPvm' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1'/>
-        <parameter type-id='type-id-83'/>
-        <return type-id='type-id-26'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__tsan'>
       <function-decl name='EnterSymbolizer' mangled-name='_ZN6__tsan15EnterSymbolizerEv' filepath='../../.././libsanitizer/tsan/tsan_symbolize.cc' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
diff --git a/tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi b/tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
index a32fc763..73cd929f 100644
--- a/tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
+++ b/tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
@@ -1609,18 +1609,9 @@ 
         <var-decl name='__state' type-id='type-id-86' visibility='default' filepath='/usr/include/_G_config.h' line='30' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='__compar_fn_t' type-id='type-id-101' filepath='/usr/include/stdlib.h' line='742' column='1' id='type-id-102'/>
-    <class-decl name='div_t' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/include/stdlib.h' line='99' column='1' id='type-id-103'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='quot' type-id='type-id-17' visibility='default' filepath='/usr/include/stdlib.h' line='100' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='rem' type-id='type-id-17' visibility='default' filepath='/usr/include/stdlib.h' line='101' column='1'/>
-      </data-member>
-    </class-decl>
-    <class-decl name='vtkPixelTransfer' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.h' line='35' column='1' id='type-id-104'>
+    <class-decl name='vtkPixelTransfer' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.h' line='35' column='1' id='type-id-101'>
         <member-type access='private'>
-          <typedef-decl name='VTK_TT' type-id='type-id-15' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.cxx' line='19' column='1' id='type-id-105'/>
+          <typedef-decl name='VTK_TT' type-id='type-id-15' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.cxx' line='19' column='1' id='type-id-102'/>
         </member-type>
       <member-function access='private' static='yes'>
         <function-decl name='Blit' mangled-name='_ZN16vtkPixelTransfer4BlitERK14vtkPixelExtentiiPviS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -1668,9 +1659,9 @@ 
           <parameter type-id='type-id-49'/>
           <parameter type-id='type-id-49'/>
           <parameter type-id='type-id-17'/>
-          <parameter type-id='type-id-106'/>
+          <parameter type-id='type-id-103'/>
           <parameter type-id='type-id-17'/>
-          <parameter type-id='type-id-106'/>
+          <parameter type-id='type-id-103'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
@@ -1681,7 +1672,7 @@ 
           <parameter type-id='type-id-49'/>
           <parameter type-id='type-id-49'/>
           <parameter type-id='type-id-17'/>
-          <parameter type-id='type-id-106'/>
+          <parameter type-id='type-id-103'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-14'/>
@@ -1689,6 +1680,15 @@ 
         </function-decl>
       </member-function>
     </class-decl>
+    <typedef-decl name='__compar_fn_t' type-id='type-id-104' filepath='/usr/include/stdlib.h' line='742' column='1' id='type-id-105'/>
+    <class-decl name='div_t' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/include/stdlib.h' line='99' column='1' id='type-id-106'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='quot' type-id='type-id-17' visibility='default' filepath='/usr/include/stdlib.h' line='100' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='32'>
+        <var-decl name='rem' type-id='type-id-17' visibility='default' filepath='/usr/include/stdlib.h' line='101' column='1'/>
+      </data-member>
+    </class-decl>
     <class-decl name='ldiv_t' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/stdlib.h' line='107' column='1' id='type-id-107'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='quot' type-id='type-id-20' visibility='default' filepath='/usr/include/stdlib.h' line='108' column='1'/>
@@ -2013,7 +2013,7 @@ 
     <pointer-type-def type-id='type-id-15' size-in-bits='64' id='type-id-194'/>
     <pointer-type-def type-id='type-id-16' size-in-bits='64' id='type-id-59'/>
     <pointer-type-def type-id='type-id-100' size-in-bits='64' id='type-id-195'/>
-    <pointer-type-def type-id='type-id-196' size-in-bits='64' id='type-id-101'/>
+    <pointer-type-def type-id='type-id-196' size-in-bits='64' id='type-id-104'/>
     <reference-type-def kind='lvalue' type-id='type-id-17' size-in-bits='64' id='type-id-51'/>
     <pointer-type-def type-id='type-id-17' size-in-bits='64' id='type-id-54'/>
     <pointer-type-def type-id='type-id-90' size-in-bits='64' id='type-id-197'/>
@@ -4275,13 +4275,13 @@ 
       <parameter type-id='type-id-14'/>
       <parameter type-id='type-id-37'/>
       <parameter type-id='type-id-37'/>
-      <parameter type-id='type-id-102'/>
+      <parameter type-id='type-id-105'/>
       <return type-id='type-id-14'/>
     </function-decl>
     <function-decl name='div' filepath='/usr/include/stdlib.h' line='785' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-17'/>
       <parameter type-id='type-id-17'/>
-      <return type-id='type-id-103'/>
+      <return type-id='type-id-106'/>
     </function-decl>
     <function-decl name='getenv' filepath='/usr/include/stdlib.h' line='567' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-68'/>
@@ -4313,7 +4313,7 @@ 
       <parameter type-id='type-id-14'/>
       <parameter type-id='type-id-37'/>
       <parameter type-id='type-id-37'/>
-      <parameter type-id='type-id-102'/>
+      <parameter type-id='type-id-105'/>
       <return type-id='type-id-26'/>
     </function-decl>
     <function-decl name='rand' filepath='/usr/include/stdlib.h' line='380' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -9024,7 +9024,7 @@ 
     </class-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
-    <pointer-type-def type-id='type-id-105' size-in-bits='64' id='type-id-106'/>
+    <pointer-type-def type-id='type-id-102' size-in-bits='64' id='type-id-103'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <class-decl name='vtkStructuredGridLIC2D' size-in-bits='1472' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='51' column='1' id='type-id-449'>
@@ -9776,6 +9776,8 @@ 
     <reference-type-def kind='lvalue' type-id='type-id-482' size-in-bits='64' id='type-id-445'/>
     <reference-type-def kind='lvalue' type-id='type-id-271' size-in-bits='64' id='type-id-285'/>
     <pointer-type-def type-id='type-id-271' size-in-bits='64' id='type-id-283'/>
+    <qualified-type-def type-id='type-id-397' id='type-id-483'/>
+    <qualified-type-def type-id='type-id-210' id='type-id-484'/>
     <pointer-type-def type-id='type-id-471' size-in-bits='64' id='type-id-472'/>
     <reference-type-def kind='lvalue' type-id='type-id-325' size-in-bits='64' id='type-id-475'/>
     <namespace-decl name='std'>
@@ -10059,14 +10061,14 @@ 
         <parameter type-id='type-id-47'/>
         <return type-id='type-id-26'/>
       </function-decl>
-      <function-decl name='__uninitialized_copy_a&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, vtkPixelExtent&gt;' mangled-name='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E'>
+      <function-decl name='__uninitialized_copy_a&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, vtkPixelExtent&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-145'/>
         <parameter type-id='type-id-145'/>
         <parameter type-id='type-id-145'/>
         <parameter type-id='type-id-210'/>
         <return type-id='type-id-145'/>
       </function-decl>
-      <function-decl name='__uninitialized_move_a&lt;float*, float*, std::allocator&lt;float&gt; &gt;' mangled-name='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_'>
+      <function-decl name='__uninitialized_move_a&lt;float*, float*, std::allocator&lt;float&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-59'/>
         <parameter type-id='type-id-59'/>
         <parameter type-id='type-id-59'/>
@@ -10151,7 +10153,7 @@ 
         <parameter type-id='type-id-480'/>
         <return type-id='type-id-46'/>
       </function-decl>
-      <class-decl name='__copy_move&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='335' column='1' is-declaration-only='yes' id='type-id-483'>
+      <class-decl name='__copy_move&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='335' column='1' is-declaration-only='yes' id='type-id-485'>
         <member-function access='public' static='yes'>
           <function-decl name='__copy_m&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-271'/>
@@ -10169,7 +10171,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' is-declaration-only='yes' id='type-id-484'>
+      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' is-declaration-only='yes' id='type-id-486'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ELb0EE3__bES4_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-145'/>
@@ -10177,7 +10179,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' is-declaration-only='yes' id='type-id-485'>
+      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' is-declaration-only='yes' id='type-id-487'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseISt15_Deque_iteratorI14vtkPixelExtentRKS1_PS2_ELb0EE3__bES5_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-271'/>
@@ -10185,7 +10187,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-486'>
+      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-488'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseISt15_Deque_iteratorI14vtkPixelExtentRKS1_PS2_ELb0EE3__bES5_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-271'/>
@@ -10193,7 +10195,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__iter_swap&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='96' column='1' is-declaration-only='yes' id='type-id-487'>
+      <class-decl name='__iter_swap&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='96' column='1' is-declaration-only='yes' id='type-id-489'>
         <member-function access='public' static='yes'>
           <function-decl name='iter_swap&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-145'/>
@@ -10202,7 +10204,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__copy_move_backward&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='539' column='1' is-declaration-only='yes' id='type-id-488'>
+      <class-decl name='__copy_move_backward&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='539' column='1' is-declaration-only='yes' id='type-id-490'>
         <member-function access='public' static='yes'>
           <function-decl name='__copy_move_b&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='542' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-145'/>
@@ -10212,7 +10214,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-489'>
+      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-491'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ELb0EE3__bES4_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-145'/>
@@ -10220,7 +10222,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__uninitialized_copy&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='64' column='1' is-declaration-only='yes' id='type-id-490'>
+      <class-decl name='__uninitialized_copy&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='64' column='1' is-declaration-only='yes' id='type-id-492'>
         <member-function access='public' static='yes'>
           <function-decl name='uninitialized_copy&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-271'/>
@@ -10246,7 +10248,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__miter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-491'>
+      <class-decl name='__miter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' is-declaration-only='yes' id='type-id-493'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseIPfLb0EE3__bES0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-59'/>
@@ -10254,7 +10256,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__uninitialized_copy&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='87' column='1' is-declaration-only='yes' id='type-id-492'>
+      <class-decl name='__uninitialized_copy&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='87' column='1' is-declaration-only='yes' id='type-id-494'>
         <member-function access='public' static='yes'>
           <function-decl name='uninitialized_copy&lt;float*, float*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-59'/>
@@ -10264,6 +10266,20 @@ 
           </function-decl>
         </member-function>
       </class-decl>
+      <function-decl name='__uninitialized_copy_a&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, vtkPixelExtent&gt;' mangled-name='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E'>
+        <parameter type-id='type-id-145' name='__first' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1'/>
+        <parameter type-id='type-id-145' name='__last' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1'/>
+        <parameter type-id='type-id-145' name='__result' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='255' column='1'/>
+        <parameter type-id='type-id-484'/>
+        <return type-id='type-id-145'/>
+      </function-decl>
+      <function-decl name='__uninitialized_move_a&lt;float*, float*, std::allocator&lt;float&gt; &gt;' mangled-name='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_'>
+        <parameter type-id='type-id-59' name='__first' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1'/>
+        <parameter type-id='type-id-59' name='__last' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1'/>
+        <parameter type-id='type-id-59' name='__result' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
+        <parameter type-id='type-id-483' name='__alloc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
+        <return type-id='type-id-59'/>
+      </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
       <function-decl name='operator-&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='856' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10274,14 +10290,14 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
-    <class-decl name='vtkSurfaceLICDefaultPainter' size-in-bits='1728' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='37' column='1' id='type-id-493'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-494'/>
+    <class-decl name='vtkSurfaceLICDefaultPainter' size-in-bits='1728' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='37' column='1' id='type-id-495'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-496'/>
       <data-member access='protected' layout-offset-in-bits='1664'>
-        <var-decl name='SurfaceLICPainter' type-id='type-id-495' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='66' column='1'/>
+        <var-decl name='SurfaceLICPainter' type-id='type-id-497' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='66' column='1'/>
       </data-member>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN27vtkSurfaceLICDefaultPainter3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='26' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter3NewEv'>
-          <return type-id='type-id-496'/>
+          <return type-id='type-id-498'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -10293,65 +10309,65 @@ 
       <member-function access='private' static='yes'>
         <function-decl name='SafeDownCast' mangled-name='_ZN27vtkSurfaceLICDefaultPainter12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-66'/>
-          <return type-id='type-id-496'/>
+          <return type-id='type-id-498'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='NewInstance' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter11NewInstanceEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-497' is-artificial='yes'/>
-          <return type-id='type-id-496'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <return type-id='type-id-498'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetSurfaceLICPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
-          <parameter type-id='type-id-495'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-497'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' constructor='yes'>
         <function-decl name='vtkSurfaceLICDefaultPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainterC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainterC2Ev'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSurfaceLICDefaultPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
-          <parameter type-id='type-id-498'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-500'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN27vtkSurfaceLICDefaultPainteraSERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
-          <parameter type-id='type-id-498'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-500'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' destructor='yes' vtable-offset='-1'>
         <function-decl name='~vtkSurfaceLICDefaultPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainterD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainterD1Ev'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='0'>
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-68'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='1'>
         <function-decl name='IsA' mangled-name='_ZN27vtkSurfaceLICDefaultPainter3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='4'>
         <function-decl name='PrintSelf' mangled-name='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <parameter type-id='type-id-72'/>
           <parameter type-id='type-id-73'/>
           <return type-id='type-id-26'/>
@@ -10359,95 +10375,95 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='14'>
         <function-decl name='ReportReferences' mangled-name='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
-          <parameter type-id='type-id-499'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-501'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='15'>
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-66'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='31'>
         <function-decl name='UpdateBounds' mangled-name='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='47'>
         <function-decl name='BuildPainterChain' mangled-name='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='47' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='48'>
         <function-decl name='GetSurfaceLICPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainter20GetSurfaceLICPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-496' is-artificial='yes'/>
-          <return type-id='type-id-495'/>
+          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <return type-id='type-id-497'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkTimeStamp' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='30' column='1' id='type-id-500'>
+    <class-decl name='vtkTimeStamp' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='30' column='1' id='type-id-502'>
       <data-member access='private' layout-offset-in-bits='0'>
         <var-decl name='ModifiedTime' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='63' column='1'/>
       </data-member>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkTimeStamp' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-503' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN12vtkTimeStamp3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-501'/>
+          <return type-id='type-id-503'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Delete' mangled-name='_ZN12vtkTimeStamp6DeleteEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-503' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Modified' mangled-name='_ZN12vtkTimeStamp8ModifiedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-503' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetMTime' mangled-name='_ZNK12vtkTimeStamp8GetMTimeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-502' is-artificial='yes'/>
+          <parameter type-id='type-id-504' is-artificial='yes'/>
           <return type-id='type-id-4'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator&gt;' mangled-name='_ZN12vtkTimeStampgtERS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-501' is-artificial='yes'/>
-          <parameter type-id='type-id-503'/>
+          <parameter type-id='type-id-503' is-artificial='yes'/>
+          <parameter type-id='type-id-505'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator&lt;' mangled-name='_ZN12vtkTimeStampltERS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-501' is-artificial='yes'/>
-          <parameter type-id='type-id-503'/>
+          <parameter type-id='type-id-503' is-artificial='yes'/>
+          <parameter type-id='type-id-505'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator long unsigned int' mangled-name='_ZNK12vtkTimeStampcvmEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-502' is-artificial='yes'/>
+          <parameter type-id='type-id-504' is-artificial='yes'/>
           <return type-id='type-id-4'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSurfaceLICPainter' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='67' column='1' id='type-id-504'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-505'/>
+    <class-decl name='vtkSurfaceLICPainter' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='67' column='1' id='type-id-506'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-507'/>
         <member-type access='private'>
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='210' column='1' id='type-id-506'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='210' column='1' id='type-id-508'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='ENHANCE_CONTRAST_OFF' value='0'/>
             <enumerator name='ENHANCE_CONTRAST_LIC' value='1'/>
@@ -10456,7 +10472,7 @@ 
           </enum-decl>
         </member-type>
         <member-type access='private'>
-          <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='374' column='1' id='type-id-507'>
+          <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='374' column='1' id='type-id-509'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='COMPOSITE_INPLACE' value='0'/>
             <enumerator name='COMPOSITE_INPLACE_DISJOINT' value='1'/>
@@ -10465,18 +10481,18 @@ 
           </enum-decl>
         </member-type>
         <member-type access='protected'>
-          <class-decl name='vtkInternals' size-in-bits='3392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='824' column='1' id='type-id-508'>
+          <class-decl name='vtkInternals' size-in-bits='3392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='824' column='1' id='type-id-510'>
             <data-member access='private' layout-offset-in-bits='0'>
-              <var-decl name='LightMonitor' type-id='type-id-509' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='826' column='1'/>
+              <var-decl name='LightMonitor' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='826' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='512'>
-              <var-decl name='ViewMonitor' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='827' column='1'/>
+              <var-decl name='ViewMonitor' type-id='type-id-512' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='827' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='576'>
-              <var-decl name='BGMonitor' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='828' column='1'/>
+              <var-decl name='BGMonitor' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='828' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='640'>
-              <var-decl name='Context' type-id='type-id-512' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='830' column='1'/>
+              <var-decl name='Context' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='830' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='704'>
               <var-decl name='GLSupport' type-id='type-id-1' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='831' column='1'/>
@@ -10524,64 +10540,64 @@ 
               <var-decl name='Communicator' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='848' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='1920'>
-              <var-decl name='DepthImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='851' column='1'/>
+              <var-decl name='DepthImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='851' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='1984'>
-              <var-decl name='GeometryImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='855' column='1'/>
+              <var-decl name='GeometryImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='855' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2048'>
-              <var-decl name='VectorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='856' column='1'/>
+              <var-decl name='VectorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='856' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2112'>
-              <var-decl name='CompositeVectorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='857' column='1'/>
+              <var-decl name='CompositeVectorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='857' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2176'>
-              <var-decl name='MaskVectorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='858' column='1'/>
+              <var-decl name='MaskVectorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='858' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2240'>
-              <var-decl name='CompositeMaskVectorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='859' column='1'/>
+              <var-decl name='CompositeMaskVectorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='859' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2304'>
-              <var-decl name='NoiseImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='860' column='1'/>
+              <var-decl name='NoiseImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='860' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2368'>
-              <var-decl name='LICImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='861' column='1'/>
+              <var-decl name='LICImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='861' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2432'>
-              <var-decl name='RGBColorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='862' column='1'/>
+              <var-decl name='RGBColorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='862' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2496'>
-              <var-decl name='HSLColorImage' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='863' column='1'/>
+              <var-decl name='HSLColorImage' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='863' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2560'>
-              <var-decl name='Noise' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='864' column='1'/>
+              <var-decl name='Noise' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='864' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2624'>
-              <var-decl name='FBO' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='866' column='1'/>
+              <var-decl name='FBO' type-id='type-id-517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='866' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2688'>
-              <var-decl name='RenderGeometryPass' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='868' column='1'/>
+              <var-decl name='RenderGeometryPass' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='868' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2752'>
-              <var-decl name='ColorPass' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='869' column='1'/>
+              <var-decl name='ColorPass' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='869' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2816'>
-              <var-decl name='ColorEnhancePass' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='870' column='1'/>
+              <var-decl name='ColorEnhancePass' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='870' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2880'>
-              <var-decl name='CopyPass' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='871' column='1'/>
+              <var-decl name='CopyPass' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='871' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='2944'>
-              <var-decl name='LightingHelper' type-id='type-id-517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='872' column='1'/>
+              <var-decl name='LightingHelper' type-id='type-id-519' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='872' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='3008'>
-              <var-decl name='ColorMaterialHelper' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='873' column='1'/>
+              <var-decl name='ColorMaterialHelper' type-id='type-id-520' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='873' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='3072'>
-              <var-decl name='Compositor' type-id='type-id-519' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='875' column='1'/>
+              <var-decl name='Compositor' type-id='type-id-521' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='875' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='3136'>
-              <var-decl name='LICer' type-id='type-id-520' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='876' column='1'/>
+              <var-decl name='LICer' type-id='type-id-522' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='876' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='3200'>
               <var-decl name='FieldAssociation' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='878' column='1'/>
@@ -10600,13 +10616,13 @@ 
             </data-member>
             <member-function access='private' constructor='yes'>
               <function-decl name='vtkInternals' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='888' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <return type-id='type-id-26'/>
               </function-decl>
             </member-function>
             <member-function access='private' destructor='yes'>
               <function-decl name='~vtkInternals' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='927' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-17' is-artificial='yes'/>
                 <return type-id='type-id-26'/>
               </function-decl>
@@ -10619,19 +10635,19 @@ 
             </member-function>
             <member-function access='private'>
               <function-decl name='ClearGraphicsResources' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals22ClearGraphicsResourcesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='989' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <return type-id='type-id-26'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='ClearTextures' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ClearTexturesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1008' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <return type-id='type-id-26'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='AllocateTextures' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals16AllocateTexturesEP15vtkRenderWindowPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1024' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-77'/>
                 <parameter type-id='type-id-54'/>
                 <return type-id='type-id-26'/>
@@ -10639,45 +10655,45 @@ 
             </member-function>
             <member-function access='private'>
               <function-decl name='AllocateTexture' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals15AllocateTextureEP15vtkRenderWindowPiR15vtkSmartPointerI16vtkTextureObjectEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1041' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-77'/>
                 <parameter type-id='type-id-54'/>
-                <parameter type-id='type-id-522'/>
+                <parameter type-id='type-id-524'/>
                 <parameter type-id='type-id-17'/>
                 <return type-id='type-id-26'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='AllocateDepthTexture' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals20AllocateDepthTextureEP15vtkRenderWindowPiR15vtkSmartPointerI16vtkTextureObjectE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1068' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-77'/>
                 <parameter type-id='type-id-54'/>
-                <parameter type-id='type-id-522'/>
+                <parameter type-id='type-id-524'/>
                 <return type-id='type-id-26'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='Updated' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals7UpdatedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1102' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <return type-id='type-id-26'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='UpdateAll' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals9UpdateAllEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1116' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <return type-id='type-id-26'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='ViewportQuadTextureCoords' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals25ViewportQuadTextureCoordsEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1129' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-60'/>
                 <return type-id='type-id-26'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='ViewportQuadPoints' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals18ViewportQuadPointsERK14vtkPixelExtentPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1138' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-49'/>
                 <parameter type-id='type-id-60'/>
                 <return type-id='type-id-26'/>
@@ -10685,7 +10701,7 @@ 
             </member-function>
             <member-function access='private'>
               <function-decl name='ViewportQuadTextureCoords' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals25ViewportQuadTextureCoordsERK14vtkPixelExtentS3_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1146' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-49'/>
                 <parameter type-id='type-id-49'/>
                 <parameter type-id='type-id-60'/>
@@ -10694,21 +10710,21 @@ 
             </member-function>
             <member-function access='private'>
               <function-decl name='ViewQuadPoints' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14ViewQuadPointsEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1168' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-60'/>
                 <return type-id='type-id-26'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='ViewQuadTextureCoords' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals21ViewQuadTextureCoordsEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1177' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-60'/>
                 <return type-id='type-id-26'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='RenderQuad' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals10RenderQuadERK14vtkPixelExtentS3_i' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1185' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-49'/>
                 <parameter type-id='type-id-49'/>
                 <parameter type-id='type-id-17'/>
@@ -10717,26 +10733,26 @@ 
             </member-function>
             <member-function access='private'>
               <function-decl name='LightingChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals15LightingChangedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1219' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <return type-id='type-id-1'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='ViewChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals11ViewChangedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1236' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <return type-id='type-id-1'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='BackgroundChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals17BackgroundChangedEP11vtkRenderer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1244' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
-                <parameter type-id='type-id-523'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
+                <parameter type-id='type-id-525'/>
                 <return type-id='type-id-1'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='idx' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals3idxEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1252' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-17'/>
                 <parameter type-id='type-id-17'/>
                 <return type-id='type-id-17'/>
@@ -10744,14 +10760,14 @@ 
             </member-function>
             <member-function access='private'>
               <function-decl name='VisibilityTest' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14VisibilityTestEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1263' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-194'/>
                 <return type-id='type-id-1'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='ProjectBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ProjectBoundsEPdPiS1_R14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1299' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-194'/>
                 <parameter type-id='type-id-54'/>
                 <parameter type-id='type-id-194'/>
@@ -10761,7 +10777,7 @@ 
             </member-function>
             <member-function access='private'>
               <function-decl name='ProjectBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ProjectBoundsEP13vtkDataObjectPiR14vtkPixelExtentRSt5dequeIS4_SaIS4_EE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1390' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-236'/>
                 <parameter type-id='type-id-54'/>
                 <parameter type-id='type-id-50'/>
@@ -10771,7 +10787,7 @@ 
             </member-function>
             <member-function access='private'>
               <function-decl name='GetPixelBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14GetPixelBoundsEPfiR14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1474' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-59'/>
                 <parameter type-id='type-id-17'/>
                 <parameter type-id='type-id-50'/>
@@ -10780,7 +10796,7 @@ 
             </member-function>
             <member-function access='private'>
               <function-decl name='GetPixelBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14GetPixelBoundsEPfiRSt5dequeI14vtkPixelExtentSaIS3_EE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1496' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-521' is-artificial='yes'/>
+                <parameter type-id='type-id-523' is-artificial='yes'/>
                 <parameter type-id='type-id-59'/>
                 <parameter type-id='type-id-17'/>
                 <parameter type-id='type-id-58'/>
@@ -10829,7 +10845,7 @@ 
         <var-decl name='MaskIntensity' type-id='type-id-15' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='501' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1792'>
-        <var-decl name='MaskColor' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='502' column='1'/>
+        <var-decl name='MaskColor' type-id='type-id-526' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='502' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1984'>
         <var-decl name='ColorMode' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='504' column='1'/>
@@ -10883,11 +10899,11 @@ 
         <var-decl name='Output' type-id='type-id-236' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='523' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='2816'>
-        <var-decl name='Internals' type-id='type-id-521' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='525' column='1'/>
+        <var-decl name='Internals' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='525' column='1'/>
       </data-member>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN20vtkSurfaceLICPainter3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter3NewEv'>
-          <return type-id='type-id-495'/>
+          <return type-id='type-id-497'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
@@ -10899,37 +10915,37 @@ 
       <member-function access='private' static='yes'>
         <function-decl name='SafeDownCast' mangled-name='_ZN20vtkSurfaceLICPainter12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-66'/>
-          <return type-id='type-id-495'/>
+          <return type-id='type-id-497'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='NewInstance' mangled-name='_ZNK20vtkSurfaceLICPainter11NewInstanceEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-525' is-artificial='yes'/>
-          <return type-id='type-id-495'/>
+          <parameter type-id='type-id-527' is-artificial='yes'/>
+          <return type-id='type-id-497'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetEnable' mangled-name='_ZN20vtkSurfaceLICPainter9SetEnableEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1645' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9SetEnableEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetEnableOn' mangled-name='_ZN20vtkSurfaceLICPainter11SetEnableOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetEnableOff' mangled-name='_ZN20vtkSurfaceLICPainter12SetEnableOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetInputArrayToProcess' mangled-name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-68'/>
           <return type-id='type-id-26'/>
@@ -10937,7 +10953,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetInputArrayToProcess' mangled-name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1602' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
@@ -10945,49 +10961,49 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNumberOfSteps' mangled-name='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1735' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetStepSize' mangled-name='_ZN20vtkSurfaceLICPainter11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1741' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter11SetStepSizeEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNormalizeVectors' mangled-name='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1747' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaskOnSurface' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaskThreshold' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1755' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1838' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12SetMaskColorEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
@@ -10996,167 +11012,167 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaskIntensity' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1809' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetEnhancedLIC' mangled-name='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1760' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetEnhanceContrast' mangled-name='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetLowLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetHighLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1774' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetLowColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1823' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetHighColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1830' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetAntiAlias' mangled-name='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetColorMode' mangled-name='_ZN20vtkSurfaceLICPainter12SetColorModeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1797' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetColorModeEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetLICIntensity' mangled-name='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMapModeBias' mangled-name='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1816' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNoiseDataSet' mangled-name='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1932' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-240'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetNoiseDataSet' mangled-name='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-240'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetGenerateNoiseTexture' mangled-name='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1650' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNoiseType' mangled-name='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1657' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNoiseTextureSize' mangled-name='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNoiseGrainSize' mangled-name='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1671' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMinNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1678' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaxNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNumberOfNoiseLevels' mangled-name='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1696' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetImpulseNoiseProbability' mangled-name='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1703' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetImpulseNoiseBackgroundValue' mangled-name='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1712' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNoiseGeneratorSeed' mangled-name='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1721' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetCompositeStrategy' mangled-name='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1729' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
@@ -11169,19 +11185,19 @@ 
       </member-function>
       <member-function access='protected' constructor='yes'>
         <function-decl name='vtkSurfaceLICPainter' mangled-name='_ZN20vtkSurfaceLICPainterC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainterC1Ev'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='CreateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2487' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='GetBounds' mangled-name='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-236'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
@@ -11189,134 +11205,134 @@ 
       </member-function>
       <member-function access='protected'>
         <function-decl name='UpdateNoiseImage' mangled-name='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2020' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-77'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='ValidateContext' mangled-name='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
-          <parameter type-id='type-id-523'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-525'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='NeedToUpdateOutputData' mangled-name='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='NeedToRenderGeometry' mangled-name='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
-          <parameter type-id='type-id-523'/>
-          <parameter type-id='type-id-526'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-528'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='NeedToGatherVectors' mangled-name='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2312' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='NeedToComputeLIC' mangled-name='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='NeedToColorLIC' mangled-name='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='SetUpdateAll' mangled-name='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='PrepareOutput' mangled-name='_ZN20vtkSurfaceLICPainter13PrepareOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter13PrepareOutputEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='InitializeResources' mangled-name='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='VectorsToTCoords' mangled-name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-236'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='VectorsToTCoords' mangled-name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-238'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='ClearTCoords' mangled-name='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-238'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='CanRenderSurfaceLIC' mangled-name='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2066' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
-          <parameter type-id='type-id-526'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-528'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSurfaceLICPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='528' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
-          <parameter type-id='type-id-527'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-529'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN20vtkSurfaceLICPainteraSERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
-          <parameter type-id='type-id-527'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-529'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' destructor='yes' vtable-offset='-1'>
         <function-decl name='~vtkSurfaceLICPainter' mangled-name='_ZN20vtkSurfaceLICPainterD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainterD1Ev'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='0'>
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK20vtkSurfaceLICPainter20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-525' is-artificial='yes'/>
+          <parameter type-id='type-id-527' is-artificial='yes'/>
           <return type-id='type-id-68'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='1'>
         <function-decl name='IsA' mangled-name='_ZN20vtkSurfaceLICPainter3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='4'>
         <function-decl name='PrintSelf' mangled-name='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3408' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-72'/>
           <parameter type-id='type-id-73'/>
           <return type-id='type-id-26'/>
@@ -11324,35 +11340,35 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='14'>
         <function-decl name='ReportReferences' mangled-name='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
-          <parameter type-id='type-id-499'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-501'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='15'>
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK20vtkSurfaceLICPainter19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-525' is-artificial='yes'/>
+          <parameter type-id='type-id-527' is-artificial='yes'/>
           <return type-id='type-id-66'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='25'>
         <function-decl name='ReleaseGraphicsResources' mangled-name='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1620' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-530'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='33'>
         <function-decl name='GetOutput' mangled-name='_ZN20vtkSurfaceLICPainter9GetOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9GetOutputEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-236'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='36'>
         <function-decl name='RenderInternal' mangled-name='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
-          <parameter type-id='type-id-523'/>
-          <parameter type-id='type-id-526'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-528'/>
           <parameter type-id='type-id-4'/>
           <parameter type-id='type-id-1'/>
           <return type-id='type-id-26'/>
@@ -11360,259 +11376,259 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='38'>
         <function-decl name='ProcessInformation' mangled-name='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-114'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='40'>
         <function-decl name='GetEnable' mangled-name='_ZN20vtkSurfaceLICPainter9GetEnableEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='41'>
         <function-decl name='GetNumberOfSteps' mangled-name='_ZN20vtkSurfaceLICPainter16GetNumberOfStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='42'>
         <function-decl name='GetStepSize' mangled-name='_ZN20vtkSurfaceLICPainter11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='43'>
         <function-decl name='NormalizeVectorsOn' mangled-name='_ZN20vtkSurfaceLICPainter18NormalizeVectorsOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='44'>
         <function-decl name='NormalizeVectorsOff' mangled-name='_ZN20vtkSurfaceLICPainter19NormalizeVectorsOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='45'>
         <function-decl name='GetNormalizeVectors' mangled-name='_ZN20vtkSurfaceLICPainter19GetNormalizeVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='46'>
         <function-decl name='MaskOnSurfaceOn' mangled-name='_ZN20vtkSurfaceLICPainter15MaskOnSurfaceOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='47'>
         <function-decl name='MaskOnSurfaceOff' mangled-name='_ZN20vtkSurfaceLICPainter16MaskOnSurfaceOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='48'>
         <function-decl name='GetMaskOnSurface' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskOnSurfaceEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='49'>
         <function-decl name='GetMaskThreshold' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskThresholdEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='50'>
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-194'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='51'>
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorERdS0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='52'>
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='53'>
         <function-decl name='GetMaskIntensity' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskIntensityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='54'>
         <function-decl name='GetEnhancedLIC' mangled-name='_ZN20vtkSurfaceLICPainter14GetEnhancedLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='55'>
         <function-decl name='EnhancedLICOn' mangled-name='_ZN20vtkSurfaceLICPainter13EnhancedLICOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='56'>
         <function-decl name='EnhancedLICOff' mangled-name='_ZN20vtkSurfaceLICPainter14EnhancedLICOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='57'>
         <function-decl name='GetEnhanceContrast' mangled-name='_ZN20vtkSurfaceLICPainter18GetEnhanceContrastEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='58'>
         <function-decl name='GetLowLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter34GetLowLICContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='59'>
         <function-decl name='GetHighLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter35GetHighLICContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='60'>
         <function-decl name='GetLowColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter36GetLowColorContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='61'>
         <function-decl name='GetHighColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter37GetHighColorContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='62'>
         <function-decl name='AntiAliasOn' mangled-name='_ZN20vtkSurfaceLICPainter11AntiAliasOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='63'>
         <function-decl name='AntiAliasOff' mangled-name='_ZN20vtkSurfaceLICPainter12AntiAliasOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='64'>
         <function-decl name='GetAntiAlias' mangled-name='_ZN20vtkSurfaceLICPainter12GetAntiAliasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='65'>
         <function-decl name='GetColorMode' mangled-name='_ZN20vtkSurfaceLICPainter12GetColorModeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='66'>
         <function-decl name='GetLICIntensity' mangled-name='_ZN20vtkSurfaceLICPainter15GetLICIntensityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='67'>
         <function-decl name='GetMapModeBias' mangled-name='_ZN20vtkSurfaceLICPainter14GetMapModeBiasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='68'>
         <function-decl name='GetGenerateNoiseTexture' mangled-name='_ZN20vtkSurfaceLICPainter23GetGenerateNoiseTextureEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='69'>
         <function-decl name='GetNoiseType' mangled-name='_ZN20vtkSurfaceLICPainter12GetNoiseTypeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='326' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='70'>
         <function-decl name='GetNoiseTextureSize' mangled-name='_ZN20vtkSurfaceLICPainter19GetNoiseTextureSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='71'>
         <function-decl name='GetNoiseGrainSize' mangled-name='_ZN20vtkSurfaceLICPainter17GetNoiseGrainSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='72'>
         <function-decl name='GetMinNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16GetMinNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='73'>
         <function-decl name='GetMaxNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaxNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='348' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='74'>
         <function-decl name='GetNumberOfNoiseLevels' mangled-name='_ZN20vtkSurfaceLICPainter22GetNumberOfNoiseLevelsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='75'>
         <function-decl name='GetImpulseNoiseProbability' mangled-name='_ZN20vtkSurfaceLICPainter26GetImpulseNoiseProbabilityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='76'>
         <function-decl name='GetImpulseNoiseBackgroundValue' mangled-name='_ZN20vtkSurfaceLICPainter30GetImpulseNoiseBackgroundValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='365' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='77'>
         <function-decl name='GetNoiseGeneratorSeed' mangled-name='_ZN20vtkSurfaceLICPainter21GetNoiseGeneratorSeedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='370' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='78'>
         <function-decl name='GetCompositeStrategy' mangled-name='_ZN20vtkSurfaceLICPainter20GetCompositeStrategyEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='79'>
         <function-decl name='WriteTimerLog' mangled-name='_ZN20vtkSurfaceLICPainter13WriteTimerLogEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='393' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='80'>
         <function-decl name='GetGlobalMinMax' mangled-name='_ZN20vtkSurfaceLICPainter15GetGlobalMinMaxEP22vtkPainterCommunicatorRfS2_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-316'/>
           <parameter type-id='type-id-327'/>
           <parameter type-id='type-id-327'/>
@@ -11621,56 +11637,56 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='81'>
         <function-decl name='StartTimerEvent' mangled-name='_ZN20vtkSurfaceLICPainter15StartTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='416' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='82'>
         <function-decl name='EndTimerEvent' mangled-name='_ZN20vtkSurfaceLICPainter13EndTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='83'>
         <function-decl name='CreateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-316'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='84'>
         <function-decl name='NeedToUpdateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv'>
-          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-497' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <qualified-type-def type-id='type-id-493' const='yes' id='type-id-530'/>
-    <reference-type-def kind='lvalue' type-id='type-id-530' size-in-bits='64' id='type-id-498'/>
-    <pointer-type-def type-id='type-id-530' size-in-bits='64' id='type-id-497'/>
-    <qualified-type-def type-id='type-id-500' const='yes' id='type-id-531'/>
-    <pointer-type-def type-id='type-id-531' size-in-bits='64' id='type-id-502'/>
-    <pointer-type-def type-id='type-id-532' size-in-bits='64' id='type-id-526'/>
-    <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-534'/>
+    <qualified-type-def type-id='type-id-495' const='yes' id='type-id-532'/>
+    <reference-type-def kind='lvalue' type-id='type-id-532' size-in-bits='64' id='type-id-500'/>
+    <pointer-type-def type-id='type-id-532' size-in-bits='64' id='type-id-499'/>
+    <qualified-type-def type-id='type-id-502' const='yes' id='type-id-533'/>
+    <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-504'/>
+    <pointer-type-def type-id='type-id-534' size-in-bits='64' id='type-id-528'/>
     <pointer-type-def type-id='type-id-535' size-in-bits='64' id='type-id-536'/>
     <pointer-type-def type-id='type-id-537' size-in-bits='64' id='type-id-538'/>
-    <pointer-type-def type-id='type-id-494' size-in-bits='64' id='type-id-539'/>
-    <pointer-type-def type-id='type-id-540' size-in-bits='64' id='type-id-541'/>
-    <pointer-type-def type-id='type-id-542' size-in-bits='64' id='type-id-499'/>
-    <pointer-type-def type-id='type-id-543' size-in-bits='64' id='type-id-544'/>
-    <pointer-type-def type-id='type-id-505' size-in-bits='64' id='type-id-545'/>
-    <pointer-type-def type-id='type-id-546' size-in-bits='64' id='type-id-523'/>
-    <pointer-type-def type-id='type-id-547' size-in-bits='64' id='type-id-548'/>
+    <pointer-type-def type-id='type-id-539' size-in-bits='64' id='type-id-540'/>
+    <pointer-type-def type-id='type-id-496' size-in-bits='64' id='type-id-541'/>
+    <pointer-type-def type-id='type-id-542' size-in-bits='64' id='type-id-543'/>
+    <pointer-type-def type-id='type-id-544' size-in-bits='64' id='type-id-501'/>
+    <pointer-type-def type-id='type-id-545' size-in-bits='64' id='type-id-546'/>
+    <pointer-type-def type-id='type-id-507' size-in-bits='64' id='type-id-547'/>
+    <pointer-type-def type-id='type-id-548' size-in-bits='64' id='type-id-525'/>
     <pointer-type-def type-id='type-id-549' size-in-bits='64' id='type-id-550'/>
-    <pointer-type-def type-id='type-id-493' size-in-bits='64' id='type-id-496'/>
-    <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-495'/>
-    <reference-type-def kind='lvalue' type-id='type-id-500' size-in-bits='64' id='type-id-503'/>
-    <pointer-type-def type-id='type-id-500' size-in-bits='64' id='type-id-501'/>
-    <class-decl name='vtkPainter' visibility='default' is-declaration-only='yes' id='type-id-505'>
+    <pointer-type-def type-id='type-id-551' size-in-bits='64' id='type-id-552'/>
+    <pointer-type-def type-id='type-id-495' size-in-bits='64' id='type-id-498'/>
+    <pointer-type-def type-id='type-id-506' size-in-bits='64' id='type-id-497'/>
+    <reference-type-def kind='lvalue' type-id='type-id-502' size-in-bits='64' id='type-id-505'/>
+    <pointer-type-def type-id='type-id-502' size-in-bits='64' id='type-id-503'/>
+    <class-decl name='vtkPainter' visibility='default' is-declaration-only='yes' id='type-id-507'>
         <member-type access='private'>
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='100' column='1' id='type-id-551'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='100' column='1' id='type-id-553'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='VERTS' value='1'/>
             <enumerator name='LINES' value='2'/>
@@ -11686,78 +11702,78 @@ 
       </member-function>
       <member-function access='private' vtable-offset='20'>
         <function-decl name='GetInformation' mangled-name='_ZN10vtkPainter14GetInformationEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <return type-id='type-id-114'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='22'>
         <function-decl name='GetDelegatePainter' mangled-name='_ZN10vtkPainter18GetDelegatePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
-          <return type-id='type-id-545'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
+          <return type-id='type-id-547'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='26'>
         <function-decl name='SetProgress' mangled-name='_ZN10vtkPainter11SetProgressEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='27'>
         <function-decl name='GetProgressMinValue' mangled-name='_ZN10vtkPainter19GetProgressMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='28'>
         <function-decl name='GetProgressMaxValue' mangled-name='_ZN10vtkPainter19GetProgressMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='29'>
         <function-decl name='GetProgress' mangled-name='_ZN10vtkPainter11GetProgressEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='32'>
         <function-decl name='GetInput' mangled-name='_ZN10vtkPainter8GetInputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <return type-id='type-id-236'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='33'>
         <function-decl name='GetOutput' mangled-name='_ZN10vtkPainter9GetOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <return type-id='type-id-236'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='35'>
         <function-decl name='PrepareForRendering' mangled-name='_ZN10vtkPainter19PrepareForRenderingEP11vtkRendererP8vtkActor' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
-          <parameter type-id='type-id-523'/>
-          <parameter type-id='type-id-526'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
+          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-528'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='38'>
         <function-decl name='ProcessInformation' mangled-name='_ZN10vtkPainter18ProcessInformationEP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-547' is-artificial='yes'/>
           <parameter type-id='type-id-114'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkRenderer' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-546'>
+    <class-decl name='vtkRenderer' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-548'>
       <member-function access='public'>
         <function-decl name='GetRenderWindow' mangled-name='_ZN11vtkRenderer15GetRenderWindowEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkRenderer.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-523' is-artificial='yes'/>
+          <parameter type-id='type-id-525' is-artificial='yes'/>
           <return type-id='type-id-77'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkDefaultPainter' visibility='default' is-declaration-only='yes' id='type-id-494'>
+    <class-decl name='vtkDefaultPainter' visibility='default' is-declaration-only='yes' id='type-id-496'>
       <member-function access='private' static='yes'>
         <function-decl name='IsTypeOf' mangled-name='_ZN17vtkDefaultPainter8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-68'/>
@@ -11766,179 +11782,179 @@ 
       </member-function>
       <member-function access='private' vtable-offset='22'>
         <function-decl name='GetDelegatePainter' mangled-name='_ZN17vtkDefaultPainter18GetDelegatePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-545'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
+          <return type-id='type-id-547'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='40'>
         <function-decl name='GetScalarsToColorsPainter' mangled-name='_ZN17vtkDefaultPainter25GetScalarsToColorsPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-550'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
+          <return type-id='type-id-552'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='41'>
         <function-decl name='GetClipPlanesPainter' mangled-name='_ZN17vtkDefaultPainter20GetClipPlanesPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-534'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
+          <return type-id='type-id-536'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='42'>
         <function-decl name='GetDisplayListPainter' mangled-name='_ZN17vtkDefaultPainter21GetDisplayListPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-541'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
+          <return type-id='type-id-543'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='43'>
         <function-decl name='GetCompositePainter' mangled-name='_ZN17vtkDefaultPainter19GetCompositePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-538'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
+          <return type-id='type-id-540'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='44'>
         <function-decl name='GetCoincidentTopologyResolutionPainter' mangled-name='_ZN17vtkDefaultPainter38GetCoincidentTopologyResolutionPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-536'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
+          <return type-id='type-id-538'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='45'>
         <function-decl name='GetLightingPainter' mangled-name='_ZN17vtkDefaultPainter18GetLightingPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-544'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
+          <return type-id='type-id-546'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='46'>
         <function-decl name='GetRepresentationPainter' mangled-name='_ZN17vtkDefaultPainter24GetRepresentationPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-548'/>
+          <parameter type-id='type-id-541' is-artificial='yes'/>
+          <return type-id='type-id-550'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkClipPlanesPainter' visibility='default' is-declaration-only='yes' id='type-id-533'/>
-    <class-decl name='vtkCoincidentTopologyResolutionPainter' visibility='default' is-declaration-only='yes' id='type-id-535'/>
-    <class-decl name='vtkGarbageCollector' visibility='default' is-declaration-only='yes' id='type-id-542'/>
-    <class-decl name='vtkActor' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-532'/>
-    <class-decl name='vtkCompositePainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-537'/>
-    <class-decl name='vtkDisplayListPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-540'/>
-    <class-decl name='vtkLightingPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-543'/>
-    <class-decl name='vtkRepresentationPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-547'/>
-    <class-decl name='vtkScalarsToColorsPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-549'/>
+    <class-decl name='vtkClipPlanesPainter' visibility='default' is-declaration-only='yes' id='type-id-535'/>
+    <class-decl name='vtkCoincidentTopologyResolutionPainter' visibility='default' is-declaration-only='yes' id='type-id-537'/>
+    <class-decl name='vtkGarbageCollector' visibility='default' is-declaration-only='yes' id='type-id-544'/>
+    <class-decl name='vtkActor' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-534'/>
+    <class-decl name='vtkCompositePainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-539'/>
+    <class-decl name='vtkDisplayListPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-542'/>
+    <class-decl name='vtkLightingPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-545'/>
+    <class-decl name='vtkRepresentationPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-549'/>
+    <class-decl name='vtkScalarsToColorsPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-551'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='192' id='type-id-524'>
-      <subrange length='3' type-id='type-id-4' id='type-id-552'/>
+    <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='192' id='type-id-526'>
+      <subrange length='3' type-id='type-id-4' id='type-id-554'/>
     </array-type-def>
-    <type-decl name='unsigned char' size-in-bits='8' id='type-id-553'/>
-    <array-type-def dimensions='1' type-id='type-id-554' size-in-bits='512' id='type-id-509'>
-      <subrange length='8' type-id='type-id-4' id='type-id-555'/>
+    <type-decl name='unsigned char' size-in-bits='8' id='type-id-555'/>
+    <array-type-def dimensions='1' type-id='type-id-556' size-in-bits='512' id='type-id-511'>
+      <subrange length='8' type-id='type-id-4' id='type-id-557'/>
     </array-type-def>
-    <typedef-decl name='GLfloat' type-id='type-id-16' filepath='/collab/usr/global/tools/order/spack/opt/chaos_5_x86_64_ib/gcc@4.4.7/mesa@8.0.5-22dd4c4b/include/GL/gl.h' line='160' column='1' id='type-id-556'/>
-    <class-decl name='vtkSmartPointerBase' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='30' column='1' id='type-id-557'>
+    <typedef-decl name='GLfloat' type-id='type-id-16' filepath='/collab/usr/global/tools/order/spack/opt/chaos_5_x86_64_ib/gcc@4.4.7/mesa@8.0.5-22dd4c4b/include/GL/gl.h' line='160' column='1' id='type-id-558'/>
+    <class-decl name='vtkSmartPointerBase' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='30' column='1' id='type-id-559'>
         <member-type access='protected'>
-          <class-decl name='NoReference' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='73' column='1' id='type-id-558'/>
+          <class-decl name='NoReference' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='73' column='1' id='type-id-560'/>
         </member-type>
       <data-member access='protected' layout-offset-in-bits='0'>
         <var-decl name='Object' type-id='type-id-66' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='77' column='1'/>
       </data-member>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <parameter type-id='type-id-66'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-559' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' destructor='yes'>
         <function-decl name='~vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN19vtkSmartPointerBaseaSEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <parameter type-id='type-id-66'/>
-          <return type-id='type-id-561'/>
+          <return type-id='type-id-563'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN19vtkSmartPointerBaseaSERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-559' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
-          <return type-id='type-id-561'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
+          <return type-id='type-id-563'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK19vtkSmartPointerBase10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-562' is-artificial='yes'/>
+          <parameter type-id='type-id-564' is-artificial='yes'/>
           <return type-id='type-id-66'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Report' mangled-name='_ZN19vtkSmartPointerBase6ReportEP19vtkGarbageCollectorPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-559' is-artificial='yes'/>
-          <parameter type-id='type-id-499'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
+          <parameter type-id='type-id-501'/>
           <parameter type-id='type-id-68'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='protected' constructor='yes'>
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <parameter type-id='type-id-66'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Swap' mangled-name='_ZN19vtkSmartPointerBase4SwapERS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-559' is-artificial='yes'/>
-          <parameter type-id='type-id-561'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
+          <parameter type-id='type-id-563'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Register' mangled-name='_ZN19vtkSmartPointerBase8RegisterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-561' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkBoundingBox' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='30' column='1' id='type-id-564'>
+    <class-decl name='vtkBoundingBox' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='30' column='1' id='type-id-566'>
       <data-member access='protected' layout-offset-in-bits='0'>
-        <var-decl name='MinPnt' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
+        <var-decl name='MinPnt' type-id='type-id-526' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='192'>
-        <var-decl name='MaxPnt' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
+        <var-decl name='MaxPnt' type-id='type-id-526' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
       </data-member>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-568'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
@@ -11950,42 +11966,42 @@ 
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-569'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN14vtkBoundingBoxaSERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
-          <parameter type-id='type-id-567'/>
-          <return type-id='type-id-568'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-569'/>
+          <return type-id='type-id-570'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator==' mangled-name='_ZNK14vtkBoundingBoxeqERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-569'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator!=' mangled-name='_ZNK14vtkBoundingBoxneERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-569'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetBounds' mangled-name='_ZN14vtkBoundingBox9SetBoundsEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-568'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetBounds' mangled-name='_ZN14vtkBoundingBox9SetBoundsEdddddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
@@ -11997,7 +12013,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMinPoint' mangled-name='_ZN14vtkBoundingBox11SetMinPointEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
@@ -12006,14 +12022,14 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMinPoint' mangled-name='_ZN14vtkBoundingBox11SetMinPointEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaxPoint' mangled-name='_ZN14vtkBoundingBox11SetMaxPointEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
@@ -12022,21 +12038,21 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaxPoint' mangled-name='_ZN14vtkBoundingBox11SetMaxPointEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='AddPoint' mangled-name='_ZN14vtkBoundingBox8AddPointEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='AddPoint' mangled-name='_ZN14vtkBoundingBox8AddPointEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
@@ -12045,35 +12061,35 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='AddBox' mangled-name='_ZN14vtkBoundingBox6AddBoxERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-569'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='AddBounds' mangled-name='_ZN14vtkBoundingBox9AddBoundsEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-568'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='IntersectBox' mangled-name='_ZN14vtkBoundingBox12IntersectBoxERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-569'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Intersects' mangled-name='_ZNK14vtkBoundingBox10IntersectsERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-569'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='IntersectPlane' mangled-name='_ZN14vtkBoundingBox14IntersectPlaneEPdS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-1'/>
@@ -12081,77 +12097,77 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='Contains' mangled-name='_ZNK14vtkBoundingBox8ContainsERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
-          <parameter type-id='type-id-567'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-569'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetBounds' mangled-name='_ZNK14vtkBoundingBox9GetBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetBounds' mangled-name='_ZNK14vtkBoundingBox9GetBoundsERdS0_S0_S0_S0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetBound' mangled-name='_ZNK14vtkBoundingBox8GetBoundEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetMinPoint' mangled-name='_ZNK14vtkBoundingBox11GetMinPointEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
-          <return type-id='type-id-566'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <return type-id='type-id-568'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetMinPoint' mangled-name='_ZNK14vtkBoundingBox11GetMinPointERdS0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetMaxPoint' mangled-name='_ZNK14vtkBoundingBox11GetMaxPointEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
-          <return type-id='type-id-566'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <return type-id='type-id-568'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetMaxPoint' mangled-name='_ZNK14vtkBoundingBox11GetMaxPointERdS0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
-          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
+          <parameter type-id='type-id-531'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='ContainsPoint' mangled-name='_ZNK14vtkBoundingBox13ContainsPointEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='ContainsPoint' mangled-name='_ZNK14vtkBoundingBox13ContainsPointEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
@@ -12160,72 +12176,72 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='GetCenter' mangled-name='_ZNK14vtkBoundingBox9GetCenterEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetLengths' mangled-name='_ZNK14vtkBoundingBox10GetLengthsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetLength' mangled-name='_ZNK14vtkBoundingBox9GetLengthEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetMaxLength' mangled-name='_ZNK14vtkBoundingBox12GetMaxLengthEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetDiagonalLength' mangled-name='_ZNK14vtkBoundingBox17GetDiagonalLengthEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Inflate' mangled-name='_ZN14vtkBoundingBox7InflateEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='IsValid' mangled-name='_ZNK14vtkBoundingBox7IsValidEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='IsValid' mangled-name='_ZN14vtkBoundingBox7IsValidEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-568'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Reset' mangled-name='_ZN14vtkBoundingBox5ResetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Scale' mangled-name='_ZN14vtkBoundingBox5ScaleEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='179' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-194'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Scale' mangled-name='_ZN14vtkBoundingBox5ScaleEddd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-567' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
@@ -12233,387 +12249,387 @@ 
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkOpenGLLightMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-554'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkOpenGLLightMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-556'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-570'/>
-          <return type-id='type-id-570'/>
+          <parameter type-id='type-id-572'/>
+          <return type-id='type-id-572'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-571' is-artificial='yes'/>
-          <parameter type-id='type-id-570'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-572'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-571' is-artificial='yes'/>
-          <parameter type-id='type-id-570'/>
-          <return type-id='type-id-572'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-572'/>
+          <return type-id='type-id-574'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-573' is-artificial='yes'/>
-          <return type-id='type-id-570'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
+          <return type-id='type-id-572'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-573' is-artificial='yes'/>
-          <return type-id='type-id-570'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
+          <return type-id='type-id-572'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkOpenGLLightMonitor*' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-573' is-artificial='yes'/>
-          <return type-id='type-id-570'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
+          <return type-id='type-id-572'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-573' is-artificial='yes'/>
-          <return type-id='type-id-574'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
+          <return type-id='type-id-576'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-573' is-artificial='yes'/>
-          <return type-id='type-id-570'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
+          <return type-id='type-id-572'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-571' is-artificial='yes'/>
-          <parameter type-id='type-id-570'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-572'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-554'/>
+          <return type-id='type-id-556'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-570'/>
-          <return type-id='type-id-554'/>
+          <parameter type-id='type-id-572'/>
+          <return type-id='type-id-556'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-570'/>
-          <return type-id='type-id-554'/>
+          <parameter type-id='type-id-572'/>
+          <return type-id='type-id-556'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-571' is-artificial='yes'/>
-          <parameter type-id='type-id-570'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-572'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-571' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkOpenGLModelViewProjectionMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-510'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkOpenGLModelViewProjectionMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-512'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-575'/>
-          <return type-id='type-id-575'/>
+          <parameter type-id='type-id-577'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-576' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-576' is-artificial='yes'/>
-          <parameter type-id='type-id-575'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-577'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-576' is-artificial='yes'/>
-          <parameter type-id='type-id-575'/>
-          <return type-id='type-id-577'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-577'/>
+          <return type-id='type-id-579'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-578' is-artificial='yes'/>
-          <return type-id='type-id-575'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-578' is-artificial='yes'/>
-          <return type-id='type-id-575'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkOpenGLModelViewProjectionMonitor*' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-578' is-artificial='yes'/>
-          <return type-id='type-id-575'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-578' is-artificial='yes'/>
-          <return type-id='type-id-579'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <return type-id='type-id-581'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-578' is-artificial='yes'/>
-          <return type-id='type-id-575'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-576' is-artificial='yes'/>
-          <parameter type-id='type-id-575'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-577'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-510'/>
+          <return type-id='type-id-512'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-575'/>
-          <return type-id='type-id-510'/>
+          <parameter type-id='type-id-577'/>
+          <return type-id='type-id-512'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-575'/>
-          <return type-id='type-id-510'/>
+          <parameter type-id='type-id-577'/>
+          <return type-id='type-id-512'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-576' is-artificial='yes'/>
-          <parameter type-id='type-id-575'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-577'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-576' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkBackgroundColorMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-511'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkBackgroundColorMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-513'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-580'/>
-          <return type-id='type-id-580'/>
+          <parameter type-id='type-id-582'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-581' is-artificial='yes'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-581' is-artificial='yes'/>
-          <parameter type-id='type-id-580'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <parameter type-id='type-id-582'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-581' is-artificial='yes'/>
-          <parameter type-id='type-id-580'/>
-          <return type-id='type-id-582'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <parameter type-id='type-id-582'/>
+          <return type-id='type-id-584'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-583' is-artificial='yes'/>
-          <return type-id='type-id-580'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-583' is-artificial='yes'/>
-          <return type-id='type-id-580'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkBackgroundColorMonitor*' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-583' is-artificial='yes'/>
-          <return type-id='type-id-580'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-583' is-artificial='yes'/>
-          <return type-id='type-id-584'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <return type-id='type-id-586'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-583' is-artificial='yes'/>
-          <return type-id='type-id-580'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-581' is-artificial='yes'/>
-          <parameter type-id='type-id-580'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <parameter type-id='type-id-582'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-511'/>
+          <return type-id='type-id-513'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-580'/>
-          <return type-id='type-id-511'/>
+          <parameter type-id='type-id-582'/>
+          <return type-id='type-id-513'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-580'/>
-          <return type-id='type-id-511'/>
+          <parameter type-id='type-id-582'/>
+          <return type-id='type-id-513'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-581' is-artificial='yes'/>
-          <parameter type-id='type-id-580'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <parameter type-id='type-id-582'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-581' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkWeakPointer&lt;vtkOpenGLRenderWindow&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-512'>
+    <class-decl name='vtkWeakPointer&lt;vtkOpenGLRenderWindow&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-514'>
       <base-class access='public' layout-offset-in-bits='0' type-id='type-id-75'/>
       <member-function access='private'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <parameter type-id='type-id-246'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <parameter type-id='type-id-78'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN14vtkWeakPointerI21vtkOpenGLRenderWindowEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <parameter type-id='type-id-246'/>
-          <return type-id='type-id-586'/>
+          <return type-id='type-id-588'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN14vtkWeakPointerI21vtkOpenGLRenderWindowEaSERK18vtkWeakPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <parameter type-id='type-id-78'/>
-          <return type-id='type-id-586'/>
+          <return type-id='type-id-588'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-587' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <return type-id='type-id-246'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-587' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <return type-id='type-id-246'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkOpenGLRenderWindow*' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-587' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <return type-id='type-id-246'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-587' is-artificial='yes'/>
-          <return type-id='type-id-588'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <return type-id='type-id-590'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-587' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <return type-id='type-id-246'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <parameter type-id='type-id-246'/>
           <parameter type-id='type-id-82'/>
           <return type-id='type-id-26'/>
@@ -12621,7 +12637,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN14vtkWeakPointerI21vtkOpenGLRenderWindowE13TakeReferenceERK18vtkWeakPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <parameter type-id='type-id-78'/>
           <return type-id='type-id-26'/>
         </function-decl>
@@ -12633,8 +12649,8 @@ 
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkTextureObject&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-513'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkTextureObject&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-515'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-325'/>
@@ -12643,102 +12659,102 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <parameter type-id='type-id-325'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <parameter type-id='type-id-325'/>
-          <return type-id='type-id-522'/>
+          <return type-id='type-id-524'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <return type-id='type-id-325'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <return type-id='type-id-325'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkTextureObject*' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <return type-id='type-id-325'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-590' is-artificial='yes'/>
-          <return type-id='type-id-591'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <return type-id='type-id-593'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <return type-id='type-id-325'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <parameter type-id='type-id-325'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-513'/>
+          <return type-id='type-id-515'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-325'/>
-          <return type-id='type-id-513'/>
+          <return type-id='type-id-515'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-325'/>
-          <return type-id='type-id-513'/>
+          <return type-id='type-id-515'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-589' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <parameter type-id='type-id-325'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-589' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkImageData&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-514'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkImageData&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-516'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-240'/>
@@ -12747,102 +12763,102 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <parameter type-id='type-id-240'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <parameter type-id='type-id-240'/>
-          <return type-id='type-id-593'/>
+          <return type-id='type-id-595'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <return type-id='type-id-240'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <return type-id='type-id-240'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkImageData*' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <return type-id='type-id-240'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-594' is-artificial='yes'/>
-          <return type-id='type-id-595'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <return type-id='type-id-597'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <return type-id='type-id-240'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <parameter type-id='type-id-240'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-514'/>
+          <return type-id='type-id-516'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-240'/>
-          <return type-id='type-id-514'/>
+          <return type-id='type-id-516'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-240'/>
-          <return type-id='type-id-514'/>
+          <return type-id='type-id-516'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <parameter type-id='type-id-240'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-592' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkFrameBufferObject2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-515'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkFrameBufferObject2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-517'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-322'/>
@@ -12851,102 +12867,102 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <parameter type-id='type-id-322'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2EaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <parameter type-id='type-id-322'/>
-          <return type-id='type-id-597'/>
+          <return type-id='type-id-599'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2E10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
           <return type-id='type-id-322'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2E3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
           <return type-id='type-id-322'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkFrameBufferObject2*' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2EcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
           <return type-id='type-id-322'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2EdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-598' is-artificial='yes'/>
-          <return type-id='type-id-599'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <return type-id='type-id-601'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2EptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
           <return type-id='type-id-322'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <parameter type-id='type-id-322'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-515'/>
+          <return type-id='type-id-517'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-322'/>
-          <return type-id='type-id-515'/>
+          <return type-id='type-id-517'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-322'/>
-          <return type-id='type-id-515'/>
+          <return type-id='type-id-517'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <parameter type-id='type-id-322'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-596' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2E4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkShaderProgram2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-516'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkShaderProgram2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-518'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-110'/>
@@ -12955,310 +12971,310 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <parameter type-id='type-id-110'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2EaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <parameter type-id='type-id-110'/>
-          <return type-id='type-id-601'/>
+          <return type-id='type-id-603'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2E10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <return type-id='type-id-110'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2E3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <return type-id='type-id-110'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkShaderProgram2*' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2EcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <return type-id='type-id-110'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2EdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-602' is-artificial='yes'/>
-          <return type-id='type-id-603'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <return type-id='type-id-605'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2EptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <return type-id='type-id-110'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <parameter type-id='type-id-110'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-516'/>
+          <return type-id='type-id-518'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-110'/>
-          <return type-id='type-id-516'/>
+          <return type-id='type-id-518'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-110'/>
-          <return type-id='type-id-516'/>
+          <return type-id='type-id-518'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <parameter type-id='type-id-110'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-600' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2E4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkLightingHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-517'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkLightingHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-519'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-604'/>
-          <return type-id='type-id-604'/>
+          <parameter type-id='type-id-606'/>
+          <return type-id='type-id-606'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-605' is-artificial='yes'/>
-          <parameter type-id='type-id-604'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
+          <parameter type-id='type-id-606'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-605' is-artificial='yes'/>
-          <parameter type-id='type-id-604'/>
-          <return type-id='type-id-606'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
+          <parameter type-id='type-id-606'/>
+          <return type-id='type-id-608'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-607' is-artificial='yes'/>
-          <return type-id='type-id-604'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
+          <return type-id='type-id-606'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-607' is-artificial='yes'/>
-          <return type-id='type-id-604'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
+          <return type-id='type-id-606'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkLightingHelper*' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-607' is-artificial='yes'/>
-          <return type-id='type-id-604'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
+          <return type-id='type-id-606'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-607' is-artificial='yes'/>
-          <return type-id='type-id-608'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
+          <return type-id='type-id-610'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-607' is-artificial='yes'/>
-          <return type-id='type-id-604'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
+          <return type-id='type-id-606'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-605' is-artificial='yes'/>
-          <parameter type-id='type-id-604'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
+          <parameter type-id='type-id-606'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-517'/>
+          <return type-id='type-id-519'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-604'/>
-          <return type-id='type-id-517'/>
+          <parameter type-id='type-id-606'/>
+          <return type-id='type-id-519'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-604'/>
-          <return type-id='type-id-517'/>
+          <parameter type-id='type-id-606'/>
+          <return type-id='type-id-519'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-605' is-artificial='yes'/>
-          <parameter type-id='type-id-604'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
+          <parameter type-id='type-id-606'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-605' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-607' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkColorMaterialHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-518'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkColorMaterialHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-520'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-609'/>
-          <return type-id='type-id-609'/>
+          <parameter type-id='type-id-611'/>
+          <return type-id='type-id-611'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-610' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-610' is-artificial='yes'/>
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-611'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-610' is-artificial='yes'/>
-          <parameter type-id='type-id-609'/>
-          <return type-id='type-id-611'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-611'/>
+          <return type-id='type-id-613'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-612' is-artificial='yes'/>
-          <return type-id='type-id-609'/>
+          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <return type-id='type-id-611'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-612' is-artificial='yes'/>
-          <return type-id='type-id-609'/>
+          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <return type-id='type-id-611'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkColorMaterialHelper*' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-612' is-artificial='yes'/>
-          <return type-id='type-id-609'/>
+          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <return type-id='type-id-611'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-612' is-artificial='yes'/>
-          <return type-id='type-id-613'/>
+          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <return type-id='type-id-615'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-612' is-artificial='yes'/>
-          <return type-id='type-id-609'/>
+          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <return type-id='type-id-611'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-610' is-artificial='yes'/>
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-611'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-518'/>
+          <return type-id='type-id-520'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-609'/>
-          <return type-id='type-id-518'/>
+          <parameter type-id='type-id-611'/>
+          <return type-id='type-id-520'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-609'/>
-          <return type-id='type-id-518'/>
+          <parameter type-id='type-id-611'/>
+          <return type-id='type-id-520'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-610' is-artificial='yes'/>
-          <parameter type-id='type-id-609'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-611'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-610' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkSurfaceLICComposite&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-519'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkSurfaceLICComposite&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-521'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-472'/>
@@ -13267,102 +13283,102 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <parameter type-id='type-id-472'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <parameter type-id='type-id-472'/>
-          <return type-id='type-id-615'/>
+          <return type-id='type-id-617'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-616' is-artificial='yes'/>
+          <parameter type-id='type-id-618' is-artificial='yes'/>
           <return type-id='type-id-472'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-616' is-artificial='yes'/>
+          <parameter type-id='type-id-618' is-artificial='yes'/>
           <return type-id='type-id-472'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkSurfaceLICComposite*' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-616' is-artificial='yes'/>
+          <parameter type-id='type-id-618' is-artificial='yes'/>
           <return type-id='type-id-472'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-616' is-artificial='yes'/>
-          <return type-id='type-id-617'/>
+          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <return type-id='type-id-619'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-616' is-artificial='yes'/>
+          <parameter type-id='type-id-618' is-artificial='yes'/>
           <return type-id='type-id-472'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <parameter type-id='type-id-472'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-519'/>
+          <return type-id='type-id-521'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-472'/>
-          <return type-id='type-id-519'/>
+          <return type-id='type-id-521'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-472'/>
-          <return type-id='type-id-519'/>
+          <return type-id='type-id-521'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-614' is-artificial='yes'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
           <parameter type-id='type-id-472'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-614' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-616' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkLineIntegralConvolution2D&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-520'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkLineIntegralConvolution2D&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-522'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-323'/>
@@ -13371,319 +13387,319 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <parameter type-id='type-id-323'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <parameter type-id='type-id-323'/>
-          <return type-id='type-id-619'/>
+          <return type-id='type-id-621'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-620' is-artificial='yes'/>
+          <parameter type-id='type-id-622' is-artificial='yes'/>
           <return type-id='type-id-323'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-620' is-artificial='yes'/>
+          <parameter type-id='type-id-622' is-artificial='yes'/>
           <return type-id='type-id-323'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkLineIntegralConvolution2D*' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-620' is-artificial='yes'/>
+          <parameter type-id='type-id-622' is-artificial='yes'/>
           <return type-id='type-id-323'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-620' is-artificial='yes'/>
-          <return type-id='type-id-621'/>
+          <parameter type-id='type-id-622' is-artificial='yes'/>
+          <return type-id='type-id-623'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-620' is-artificial='yes'/>
+          <parameter type-id='type-id-622' is-artificial='yes'/>
           <return type-id='type-id-323'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <parameter type-id='type-id-323'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-520'/>
+          <return type-id='type-id-522'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-323'/>
-          <return type-id='type-id-520'/>
+          <return type-id='type-id-522'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-323'/>
-          <return type-id='type-id-520'/>
+          <return type-id='type-id-522'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-618' is-artificial='yes'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
           <parameter type-id='type-id-323'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-618' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-620' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkTimerLog&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-622'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkTimerLog&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-624'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-559'/>
       <member-function access='private' static='yes'>
         <function-decl name='CheckType' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE9CheckTypeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-623'/>
-          <return type-id='type-id-623'/>
+          <parameter type-id='type-id-625'/>
+          <return type-id='type-id-625'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-624' is-artificial='yes'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-624' is-artificial='yes'/>
-          <parameter type-id='type-id-623'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
+          <parameter type-id='type-id-625'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-624' is-artificial='yes'/>
-          <parameter type-id='type-id-623'/>
-          <return type-id='type-id-625'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
+          <parameter type-id='type-id-625'/>
+          <return type-id='type-id-627'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-626' is-artificial='yes'/>
-          <return type-id='type-id-623'/>
+          <parameter type-id='type-id-628' is-artificial='yes'/>
+          <return type-id='type-id-625'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Get' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogE3GetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-626' is-artificial='yes'/>
-          <return type-id='type-id-623'/>
+          <parameter type-id='type-id-628' is-artificial='yes'/>
+          <return type-id='type-id-625'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkTimerLog*' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-626' is-artificial='yes'/>
-          <return type-id='type-id-623'/>
+          <parameter type-id='type-id-628' is-artificial='yes'/>
+          <return type-id='type-id-625'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator*' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-626' is-artificial='yes'/>
-          <return type-id='type-id-627'/>
+          <parameter type-id='type-id-628' is-artificial='yes'/>
+          <return type-id='type-id-629'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-626' is-artificial='yes'/>
-          <return type-id='type-id-623'/>
+          <parameter type-id='type-id-628' is-artificial='yes'/>
+          <return type-id='type-id-625'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-624' is-artificial='yes'/>
-          <parameter type-id='type-id-623'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
+          <parameter type-id='type-id-625'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-622'/>
+          <return type-id='type-id-624'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='NewInstance' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE11NewInstanceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-623'/>
-          <return type-id='type-id-622'/>
+          <parameter type-id='type-id-625'/>
+          <return type-id='type-id-624'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE4TakeEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-623'/>
-          <return type-id='type-id-622'/>
+          <parameter type-id='type-id-625'/>
+          <return type-id='type-id-624'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-624' is-artificial='yes'/>
-          <parameter type-id='type-id-623'/>
-          <parameter type-id='type-id-563'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
+          <parameter type-id='type-id-625'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE13TakeReferenceERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-624' is-artificial='yes'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-626' is-artificial='yes'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Take' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE4TakeERK19vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-562'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-60'/>
-    <qualified-type-def type-id='type-id-15' const='yes' id='type-id-628'/>
-    <reference-type-def kind='lvalue' type-id='type-id-628' size-in-bits='64' id='type-id-629'/>
-    <pointer-type-def type-id='type-id-628' size-in-bits='64' id='type-id-566'/>
-    <qualified-type-def type-id='type-id-630' const='yes' id='type-id-631'/>
-    <pointer-type-def type-id='type-id-631' size-in-bits='64' id='type-id-632'/>
-    <qualified-type-def type-id='type-id-633' const='yes' id='type-id-634'/>
-    <reference-type-def kind='lvalue' type-id='type-id-634' size-in-bits='64' id='type-id-635'/>
-    <pointer-type-def type-id='type-id-634' size-in-bits='64' id='type-id-636'/>
-    <qualified-type-def type-id='type-id-564' const='yes' id='type-id-637'/>
-    <reference-type-def kind='lvalue' type-id='type-id-637' size-in-bits='64' id='type-id-567'/>
-    <pointer-type-def type-id='type-id-637' size-in-bits='64' id='type-id-569'/>
-    <qualified-type-def type-id='type-id-235' const='yes' id='type-id-638'/>
-    <pointer-type-def type-id='type-id-638' size-in-bits='64' id='type-id-288'/>
-    <qualified-type-def type-id='type-id-511' const='yes' id='type-id-639'/>
-    <pointer-type-def type-id='type-id-639' size-in-bits='64' id='type-id-583'/>
-    <qualified-type-def type-id='type-id-518' const='yes' id='type-id-640'/>
-    <pointer-type-def type-id='type-id-640' size-in-bits='64' id='type-id-612'/>
-    <qualified-type-def type-id='type-id-515' const='yes' id='type-id-641'/>
-    <pointer-type-def type-id='type-id-641' size-in-bits='64' id='type-id-598'/>
-    <qualified-type-def type-id='type-id-514' const='yes' id='type-id-642'/>
-    <pointer-type-def type-id='type-id-642' size-in-bits='64' id='type-id-594'/>
+    <pointer-type-def type-id='type-id-558' size-in-bits='64' id='type-id-60'/>
+    <qualified-type-def type-id='type-id-15' const='yes' id='type-id-630'/>
+    <reference-type-def kind='lvalue' type-id='type-id-630' size-in-bits='64' id='type-id-631'/>
+    <pointer-type-def type-id='type-id-630' size-in-bits='64' id='type-id-568'/>
+    <qualified-type-def type-id='type-id-632' const='yes' id='type-id-633'/>
+    <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-634'/>
+    <qualified-type-def type-id='type-id-635' const='yes' id='type-id-636'/>
+    <reference-type-def kind='lvalue' type-id='type-id-636' size-in-bits='64' id='type-id-637'/>
+    <pointer-type-def type-id='type-id-636' size-in-bits='64' id='type-id-638'/>
+    <qualified-type-def type-id='type-id-566' const='yes' id='type-id-639'/>
+    <reference-type-def kind='lvalue' type-id='type-id-639' size-in-bits='64' id='type-id-569'/>
+    <pointer-type-def type-id='type-id-639' size-in-bits='64' id='type-id-571'/>
+    <qualified-type-def type-id='type-id-235' const='yes' id='type-id-640'/>
+    <pointer-type-def type-id='type-id-640' size-in-bits='64' id='type-id-288'/>
+    <qualified-type-def type-id='type-id-513' const='yes' id='type-id-641'/>
+    <pointer-type-def type-id='type-id-641' size-in-bits='64' id='type-id-585'/>
+    <qualified-type-def type-id='type-id-520' const='yes' id='type-id-642'/>
+    <pointer-type-def type-id='type-id-642' size-in-bits='64' id='type-id-614'/>
     <qualified-type-def type-id='type-id-517' const='yes' id='type-id-643'/>
-    <pointer-type-def type-id='type-id-643' size-in-bits='64' id='type-id-607'/>
-    <qualified-type-def type-id='type-id-520' const='yes' id='type-id-644'/>
-    <pointer-type-def type-id='type-id-644' size-in-bits='64' id='type-id-620'/>
-    <qualified-type-def type-id='type-id-554' const='yes' id='type-id-645'/>
-    <pointer-type-def type-id='type-id-645' size-in-bits='64' id='type-id-573'/>
-    <qualified-type-def type-id='type-id-510' const='yes' id='type-id-646'/>
-    <pointer-type-def type-id='type-id-646' size-in-bits='64' id='type-id-578'/>
-    <qualified-type-def type-id='type-id-516' const='yes' id='type-id-647'/>
-    <pointer-type-def type-id='type-id-647' size-in-bits='64' id='type-id-602'/>
-    <qualified-type-def type-id='type-id-519' const='yes' id='type-id-648'/>
-    <pointer-type-def type-id='type-id-648' size-in-bits='64' id='type-id-616'/>
-    <qualified-type-def type-id='type-id-513' const='yes' id='type-id-649'/>
-    <pointer-type-def type-id='type-id-649' size-in-bits='64' id='type-id-590'/>
-    <qualified-type-def type-id='type-id-622' const='yes' id='type-id-650'/>
-    <pointer-type-def type-id='type-id-650' size-in-bits='64' id='type-id-626'/>
-    <qualified-type-def type-id='type-id-557' const='yes' id='type-id-651'/>
-    <reference-type-def kind='lvalue' type-id='type-id-651' size-in-bits='64' id='type-id-560'/>
-    <pointer-type-def type-id='type-id-651' size-in-bits='64' id='type-id-562'/>
-    <qualified-type-def type-id='type-id-558' const='yes' id='type-id-652'/>
-    <reference-type-def kind='lvalue' type-id='type-id-652' size-in-bits='64' id='type-id-563'/>
-    <qualified-type-def type-id='type-id-504' const='yes' id='type-id-653'/>
-    <reference-type-def kind='lvalue' type-id='type-id-653' size-in-bits='64' id='type-id-527'/>
-    <pointer-type-def type-id='type-id-653' size-in-bits='64' id='type-id-525'/>
-    <qualified-type-def type-id='type-id-654' const='yes' id='type-id-655'/>
-    <reference-type-def kind='lvalue' type-id='type-id-655' size-in-bits='64' id='type-id-656'/>
-    <qualified-type-def type-id='type-id-512' const='yes' id='type-id-657'/>
-    <pointer-type-def type-id='type-id-657' size-in-bits='64' id='type-id-587'/>
-    <reference-type-def kind='lvalue' type-id='type-id-15' size-in-bits='64' id='type-id-529'/>
-    <pointer-type-def type-id='type-id-630' size-in-bits='64' id='type-id-658'/>
-    <pointer-type-def type-id='type-id-659' size-in-bits='64' id='type-id-660'/>
-    <reference-type-def kind='lvalue' type-id='type-id-633' size-in-bits='64' id='type-id-661'/>
-    <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-662'/>
-    <pointer-type-def type-id='type-id-553' size-in-bits='64' id='type-id-663'/>
-    <reference-type-def kind='lvalue' type-id='type-id-664' size-in-bits='64' id='type-id-584'/>
-    <pointer-type-def type-id='type-id-664' size-in-bits='64' id='type-id-580'/>
-    <reference-type-def kind='lvalue' type-id='type-id-564' size-in-bits='64' id='type-id-568'/>
-    <pointer-type-def type-id='type-id-564' size-in-bits='64' id='type-id-565'/>
-    <pointer-type-def type-id='type-id-665' size-in-bits='64' id='type-id-294'/>
-    <reference-type-def kind='lvalue' type-id='type-id-666' size-in-bits='64' id='type-id-613'/>
-    <pointer-type-def type-id='type-id-666' size-in-bits='64' id='type-id-609'/>
-    <pointer-type-def type-id='type-id-667' size-in-bits='64' id='type-id-668'/>
+    <pointer-type-def type-id='type-id-643' size-in-bits='64' id='type-id-600'/>
+    <qualified-type-def type-id='type-id-516' const='yes' id='type-id-644'/>
+    <pointer-type-def type-id='type-id-644' size-in-bits='64' id='type-id-596'/>
+    <qualified-type-def type-id='type-id-519' const='yes' id='type-id-645'/>
+    <pointer-type-def type-id='type-id-645' size-in-bits='64' id='type-id-609'/>
+    <qualified-type-def type-id='type-id-522' const='yes' id='type-id-646'/>
+    <pointer-type-def type-id='type-id-646' size-in-bits='64' id='type-id-622'/>
+    <qualified-type-def type-id='type-id-556' const='yes' id='type-id-647'/>
+    <pointer-type-def type-id='type-id-647' size-in-bits='64' id='type-id-575'/>
+    <qualified-type-def type-id='type-id-512' const='yes' id='type-id-648'/>
+    <pointer-type-def type-id='type-id-648' size-in-bits='64' id='type-id-580'/>
+    <qualified-type-def type-id='type-id-518' const='yes' id='type-id-649'/>
+    <pointer-type-def type-id='type-id-649' size-in-bits='64' id='type-id-604'/>
+    <qualified-type-def type-id='type-id-521' const='yes' id='type-id-650'/>
+    <pointer-type-def type-id='type-id-650' size-in-bits='64' id='type-id-618'/>
+    <qualified-type-def type-id='type-id-515' const='yes' id='type-id-651'/>
+    <pointer-type-def type-id='type-id-651' size-in-bits='64' id='type-id-592'/>
+    <qualified-type-def type-id='type-id-624' const='yes' id='type-id-652'/>
+    <pointer-type-def type-id='type-id-652' size-in-bits='64' id='type-id-628'/>
+    <qualified-type-def type-id='type-id-559' const='yes' id='type-id-653'/>
+    <reference-type-def kind='lvalue' type-id='type-id-653' size-in-bits='64' id='type-id-562'/>
+    <pointer-type-def type-id='type-id-653' size-in-bits='64' id='type-id-564'/>
+    <qualified-type-def type-id='type-id-560' const='yes' id='type-id-654'/>
+    <reference-type-def kind='lvalue' type-id='type-id-654' size-in-bits='64' id='type-id-565'/>
+    <qualified-type-def type-id='type-id-506' const='yes' id='type-id-655'/>
+    <reference-type-def kind='lvalue' type-id='type-id-655' size-in-bits='64' id='type-id-529'/>
+    <pointer-type-def type-id='type-id-655' size-in-bits='64' id='type-id-527'/>
+    <qualified-type-def type-id='type-id-656' const='yes' id='type-id-657'/>
+    <reference-type-def kind='lvalue' type-id='type-id-657' size-in-bits='64' id='type-id-658'/>
+    <qualified-type-def type-id='type-id-514' const='yes' id='type-id-659'/>
+    <pointer-type-def type-id='type-id-659' size-in-bits='64' id='type-id-589'/>
+    <reference-type-def kind='lvalue' type-id='type-id-15' size-in-bits='64' id='type-id-531'/>
+    <pointer-type-def type-id='type-id-632' size-in-bits='64' id='type-id-660'/>
+    <pointer-type-def type-id='type-id-661' size-in-bits='64' id='type-id-662'/>
+    <reference-type-def kind='lvalue' type-id='type-id-635' size-in-bits='64' id='type-id-663'/>
+    <pointer-type-def type-id='type-id-635' size-in-bits='64' id='type-id-664'/>
+    <pointer-type-def type-id='type-id-555' size-in-bits='64' id='type-id-665'/>
+    <reference-type-def kind='lvalue' type-id='type-id-666' size-in-bits='64' id='type-id-586'/>
+    <pointer-type-def type-id='type-id-666' size-in-bits='64' id='type-id-582'/>
+    <reference-type-def kind='lvalue' type-id='type-id-566' size-in-bits='64' id='type-id-570'/>
+    <pointer-type-def type-id='type-id-566' size-in-bits='64' id='type-id-567'/>
+    <pointer-type-def type-id='type-id-667' size-in-bits='64' id='type-id-294'/>
+    <reference-type-def kind='lvalue' type-id='type-id-668' size-in-bits='64' id='type-id-615'/>
+    <pointer-type-def type-id='type-id-668' size-in-bits='64' id='type-id-611'/>
     <pointer-type-def type-id='type-id-669' size-in-bits='64' id='type-id-670'/>
-    <reference-type-def kind='lvalue' type-id='type-id-415' size-in-bits='64' id='type-id-599'/>
-    <reference-type-def kind='lvalue' type-id='type-id-239' size-in-bits='64' id='type-id-595'/>
-    <reference-type-def kind='lvalue' type-id='type-id-671' size-in-bits='64' id='type-id-608'/>
-    <pointer-type-def type-id='type-id-671' size-in-bits='64' id='type-id-604'/>
-    <reference-type-def kind='lvalue' type-id='type-id-320' size-in-bits='64' id='type-id-621'/>
-    <pointer-type-def type-id='type-id-672' size-in-bits='64' id='type-id-673'/>
-    <reference-type-def kind='lvalue' type-id='type-id-674' size-in-bits='64' id='type-id-574'/>
-    <pointer-type-def type-id='type-id-674' size-in-bits='64' id='type-id-570'/>
-    <reference-type-def kind='lvalue' type-id='type-id-675' size-in-bits='64' id='type-id-579'/>
-    <pointer-type-def type-id='type-id-675' size-in-bits='64' id='type-id-575'/>
-    <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-588'/>
-    <pointer-type-def type-id='type-id-676' size-in-bits='64' id='type-id-677'/>
-    <reference-type-def kind='lvalue' type-id='type-id-259' size-in-bits='64' id='type-id-603'/>
-    <reference-type-def kind='lvalue' type-id='type-id-511' size-in-bits='64' id='type-id-582'/>
-    <pointer-type-def type-id='type-id-511' size-in-bits='64' id='type-id-581'/>
-    <reference-type-def kind='lvalue' type-id='type-id-518' size-in-bits='64' id='type-id-611'/>
-    <pointer-type-def type-id='type-id-518' size-in-bits='64' id='type-id-610'/>
-    <reference-type-def kind='lvalue' type-id='type-id-515' size-in-bits='64' id='type-id-597'/>
-    <pointer-type-def type-id='type-id-515' size-in-bits='64' id='type-id-596'/>
-    <reference-type-def kind='lvalue' type-id='type-id-514' size-in-bits='64' id='type-id-593'/>
-    <pointer-type-def type-id='type-id-514' size-in-bits='64' id='type-id-592'/>
-    <reference-type-def kind='lvalue' type-id='type-id-517' size-in-bits='64' id='type-id-606'/>
-    <pointer-type-def type-id='type-id-517' size-in-bits='64' id='type-id-605'/>
-    <reference-type-def kind='lvalue' type-id='type-id-520' size-in-bits='64' id='type-id-619'/>
-    <pointer-type-def type-id='type-id-520' size-in-bits='64' id='type-id-618'/>
-    <reference-type-def kind='lvalue' type-id='type-id-554' size-in-bits='64' id='type-id-572'/>
-    <pointer-type-def type-id='type-id-554' size-in-bits='64' id='type-id-571'/>
-    <reference-type-def kind='lvalue' type-id='type-id-510' size-in-bits='64' id='type-id-577'/>
-    <pointer-type-def type-id='type-id-510' size-in-bits='64' id='type-id-576'/>
-    <reference-type-def kind='lvalue' type-id='type-id-516' size-in-bits='64' id='type-id-601'/>
-    <pointer-type-def type-id='type-id-516' size-in-bits='64' id='type-id-600'/>
-    <reference-type-def kind='lvalue' type-id='type-id-519' size-in-bits='64' id='type-id-615'/>
-    <pointer-type-def type-id='type-id-519' size-in-bits='64' id='type-id-614'/>
-    <reference-type-def kind='lvalue' type-id='type-id-513' size-in-bits='64' id='type-id-522'/>
-    <pointer-type-def type-id='type-id-513' size-in-bits='64' id='type-id-589'/>
-    <reference-type-def kind='lvalue' type-id='type-id-622' size-in-bits='64' id='type-id-625'/>
-    <pointer-type-def type-id='type-id-622' size-in-bits='64' id='type-id-624'/>
-    <reference-type-def kind='lvalue' type-id='type-id-557' size-in-bits='64' id='type-id-561'/>
-    <pointer-type-def type-id='type-id-557' size-in-bits='64' id='type-id-559'/>
-    <reference-type-def kind='lvalue' type-id='type-id-471' size-in-bits='64' id='type-id-617'/>
-    <pointer-type-def type-id='type-id-508' size-in-bits='64' id='type-id-521'/>
+    <pointer-type-def type-id='type-id-671' size-in-bits='64' id='type-id-672'/>
+    <reference-type-def kind='lvalue' type-id='type-id-415' size-in-bits='64' id='type-id-601'/>
+    <reference-type-def kind='lvalue' type-id='type-id-239' size-in-bits='64' id='type-id-597'/>
+    <reference-type-def kind='lvalue' type-id='type-id-673' size-in-bits='64' id='type-id-610'/>
+    <pointer-type-def type-id='type-id-673' size-in-bits='64' id='type-id-606'/>
+    <reference-type-def kind='lvalue' type-id='type-id-320' size-in-bits='64' id='type-id-623'/>
+    <pointer-type-def type-id='type-id-674' size-in-bits='64' id='type-id-675'/>
+    <reference-type-def kind='lvalue' type-id='type-id-676' size-in-bits='64' id='type-id-576'/>
+    <pointer-type-def type-id='type-id-676' size-in-bits='64' id='type-id-572'/>
+    <reference-type-def kind='lvalue' type-id='type-id-677' size-in-bits='64' id='type-id-581'/>
+    <pointer-type-def type-id='type-id-677' size-in-bits='64' id='type-id-577'/>
+    <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-590'/>
     <pointer-type-def type-id='type-id-678' size-in-bits='64' id='type-id-679'/>
-    <pointer-type-def type-id='type-id-654' size-in-bits='64' id='type-id-680'/>
-    <reference-type-def kind='lvalue' type-id='type-id-290' size-in-bits='64' id='type-id-591'/>
-    <reference-type-def kind='lvalue' type-id='type-id-681' size-in-bits='64' id='type-id-627'/>
-    <pointer-type-def type-id='type-id-681' size-in-bits='64' id='type-id-623'/>
-    <pointer-type-def type-id='type-id-682' size-in-bits='64' id='type-id-683'/>
-    <reference-type-def kind='lvalue' type-id='type-id-512' size-in-bits='64' id='type-id-586'/>
-    <pointer-type-def type-id='type-id-512' size-in-bits='64' id='type-id-585'/>
-    <pointer-type-def type-id='type-id-684' size-in-bits='64' id='type-id-528'/>
+    <reference-type-def kind='lvalue' type-id='type-id-259' size-in-bits='64' id='type-id-605'/>
+    <reference-type-def kind='lvalue' type-id='type-id-513' size-in-bits='64' id='type-id-584'/>
+    <pointer-type-def type-id='type-id-513' size-in-bits='64' id='type-id-583'/>
+    <reference-type-def kind='lvalue' type-id='type-id-520' size-in-bits='64' id='type-id-613'/>
+    <pointer-type-def type-id='type-id-520' size-in-bits='64' id='type-id-612'/>
+    <reference-type-def kind='lvalue' type-id='type-id-517' size-in-bits='64' id='type-id-599'/>
+    <pointer-type-def type-id='type-id-517' size-in-bits='64' id='type-id-598'/>
+    <reference-type-def kind='lvalue' type-id='type-id-516' size-in-bits='64' id='type-id-595'/>
+    <pointer-type-def type-id='type-id-516' size-in-bits='64' id='type-id-594'/>
+    <reference-type-def kind='lvalue' type-id='type-id-519' size-in-bits='64' id='type-id-608'/>
+    <pointer-type-def type-id='type-id-519' size-in-bits='64' id='type-id-607'/>
+    <reference-type-def kind='lvalue' type-id='type-id-522' size-in-bits='64' id='type-id-621'/>
+    <pointer-type-def type-id='type-id-522' size-in-bits='64' id='type-id-620'/>
+    <reference-type-def kind='lvalue' type-id='type-id-556' size-in-bits='64' id='type-id-574'/>
+    <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-573'/>
+    <reference-type-def kind='lvalue' type-id='type-id-512' size-in-bits='64' id='type-id-579'/>
+    <pointer-type-def type-id='type-id-512' size-in-bits='64' id='type-id-578'/>
+    <reference-type-def kind='lvalue' type-id='type-id-518' size-in-bits='64' id='type-id-603'/>
+    <pointer-type-def type-id='type-id-518' size-in-bits='64' id='type-id-602'/>
+    <reference-type-def kind='lvalue' type-id='type-id-521' size-in-bits='64' id='type-id-617'/>
+    <pointer-type-def type-id='type-id-521' size-in-bits='64' id='type-id-616'/>
+    <reference-type-def kind='lvalue' type-id='type-id-515' size-in-bits='64' id='type-id-524'/>
+    <pointer-type-def type-id='type-id-515' size-in-bits='64' id='type-id-591'/>
+    <reference-type-def kind='lvalue' type-id='type-id-624' size-in-bits='64' id='type-id-627'/>
+    <pointer-type-def type-id='type-id-624' size-in-bits='64' id='type-id-626'/>
+    <reference-type-def kind='lvalue' type-id='type-id-559' size-in-bits='64' id='type-id-563'/>
+    <pointer-type-def type-id='type-id-559' size-in-bits='64' id='type-id-561'/>
+    <reference-type-def kind='lvalue' type-id='type-id-471' size-in-bits='64' id='type-id-619'/>
+    <pointer-type-def type-id='type-id-510' size-in-bits='64' id='type-id-523'/>
+    <pointer-type-def type-id='type-id-680' size-in-bits='64' id='type-id-681'/>
+    <pointer-type-def type-id='type-id-656' size-in-bits='64' id='type-id-682'/>
+    <reference-type-def kind='lvalue' type-id='type-id-290' size-in-bits='64' id='type-id-593'/>
+    <reference-type-def kind='lvalue' type-id='type-id-683' size-in-bits='64' id='type-id-629'/>
+    <pointer-type-def type-id='type-id-683' size-in-bits='64' id='type-id-625'/>
+    <pointer-type-def type-id='type-id-684' size-in-bits='64' id='type-id-685'/>
+    <reference-type-def kind='lvalue' type-id='type-id-514' size-in-bits='64' id='type-id-588'/>
+    <pointer-type-def type-id='type-id-514' size-in-bits='64' id='type-id-587'/>
+    <pointer-type-def type-id='type-id-686' size-in-bits='64' id='type-id-530'/>
     <namespace-decl name='std'>
       <function-decl name='uninitialized_copy&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-145'/>
@@ -13714,9 +13730,9 @@ 
         <parameter type-id='type-id-68'/>
         <return type-id='type-id-1'/>
       </function-decl>
-      <class-decl name='_Vector_base&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-630'>
+      <class-decl name='_Vector_base&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-632'>
           <member-type access='public'>
-            <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-659'>
+            <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-661'>
               <base-class access='public' layout-offset-in-bits='0' type-id='type-id-161'/>
               <data-member access='public' layout-offset-in-bits='0'>
                 <var-decl name='_M_start' type-id='type-id-48' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
@@ -13729,13 +13745,13 @@ 
               </data-member>
               <member-function access='public' constructor='yes'>
                 <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
-                  <parameter type-id='type-id-660' is-artificial='yes'/>
+                  <parameter type-id='type-id-662' is-artificial='yes'/>
                   <return type-id='type-id-26'/>
                 </function-decl>
               </member-function>
               <member-function access='public' constructor='yes'>
                 <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
-                  <parameter type-id='type-id-660' is-artificial='yes'/>
+                  <parameter type-id='type-id-662' is-artificial='yes'/>
                   <parameter type-id='type-id-163'/>
                   <return type-id='type-id-26'/>
                 </function-decl>
@@ -13743,42 +13759,42 @@ 
             </class-decl>
           </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_impl' type-id='type-id-659' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-661' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <return type-id='type-id-210'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNKSt12_Vector_baseI14vtkPixelExtentSaIS0_EE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-632' is-artificial='yes'/>
+            <parameter type-id='type-id-634' is-artificial='yes'/>
             <return type-id='type-id-163'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='get_allocator' mangled-name='_ZNKSt12_Vector_baseI14vtkPixelExtentSaIS0_EE13get_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-632' is-artificial='yes'/>
+            <parameter type-id='type-id-634' is-artificial='yes'/>
             <return type-id='type-id-161'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <parameter type-id='type-id-163'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-163'/>
             <return type-id='type-id-26'/>
@@ -13786,45 +13802,45 @@ 
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE11_M_allocateEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-48'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE13_M_deallocateEPS0_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-658' is-artificial='yes'/>
+            <parameter type-id='type-id-660' is-artificial='yes'/>
             <parameter type-id='type-id-48'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-633'>
-        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-630'/>
+      <class-decl name='vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-635'>
+        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-632'/>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-163'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-49'/>
             <parameter type-id='type-id-163'/>
@@ -13833,28 +13849,28 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <parameter type-id='type-id-635'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <parameter type-id='type-id-637'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator=' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EEaSERKS2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <parameter type-id='type-id-635'/>
-            <return type-id='type-id-661'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <parameter type-id='type-id-637'/>
+            <return type-id='type-id-663'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='assign' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE6assignEmRKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='374' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-49'/>
             <return type-id='type-id-26'/>
@@ -13862,67 +13878,67 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='begin' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE5beginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='425' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <return type-id='type-id-685'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <return type-id='type-id-687'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='begin' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE5beginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='434' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
-            <return type-id='type-id-686'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
+            <return type-id='type-id-688'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='end' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE3endEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='443' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <return type-id='type-id-685'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <return type-id='type-id-687'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='end' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE3endEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='452' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
-            <return type-id='type-id-686'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
+            <return type-id='type-id-688'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='rbegin' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE6rbeginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='461' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <return type-id='type-id-687'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <return type-id='type-id-689'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='rbegin' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE6rbeginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='470' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
-            <return type-id='type-id-688'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
+            <return type-id='type-id-690'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='rend' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE4rendEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='479' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <return type-id='type-id-687'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <return type-id='type-id-689'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='rend' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE4rendEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='488' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
-            <return type-id='type-id-688'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
+            <return type-id='type-id-690'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='size' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE4sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='532' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <return type-id='type-id-37'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='max_size' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='537' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <return type-id='type-id-37'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='resize' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE6resizeEmS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='552' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-47'/>
             <return type-id='type-id-26'/>
@@ -13930,119 +13946,119 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='capacity' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE8capacityEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <return type-id='type-id-37'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='empty' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE5emptyEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='574' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <return type-id='type-id-1'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='reserve' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE7reserveEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator[]' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-50'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator[]' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='625' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-49'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_range_check' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE14_M_range_checkEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='631' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='at' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE2atEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='650' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-50'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='at' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE2atEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='668' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-49'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='front' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE5frontEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='679' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <return type-id='type-id-50'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='front' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE5frontEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='687' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <return type-id='type-id-49'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='back' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE4backEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='695' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <return type-id='type-id-50'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='back' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE4backEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='703' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <return type-id='type-id-49'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='data' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE4dataEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='714' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <return type-id='type-id-48'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='data' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE4dataEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='718' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <return type-id='type-id-52'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='push_back' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE9push_backERKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='733' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-49'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='pop_back' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE8pop_backEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='764' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='insert' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE6insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <parameter type-id='type-id-687'/>
             <parameter type-id='type-id-49'/>
-            <return type-id='type-id-685'/>
+            <return type-id='type-id-687'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='insert' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE6insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EEmRKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <parameter type-id='type-id-687'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-49'/>
             <return type-id='type-id-26'/>
@@ -14050,35 +14066,35 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='erase' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE5eraseEN9__gnu_cxx17__normal_iteratorIPS0_S2_EE' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <parameter type-id='type-id-685'/>
-            <return type-id='type-id-685'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <parameter type-id='type-id-687'/>
+            <return type-id='type-id-687'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='erase' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE5eraseEN9__gnu_cxx17__normal_iteratorIPS0_S2_EES6_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <parameter type-id='type-id-685'/>
-            <parameter type-id='type-id-685'/>
-            <return type-id='type-id-685'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <parameter type-id='type-id-687'/>
+            <parameter type-id='type-id-687'/>
+            <return type-id='type-id-687'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='swap' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE4swapERS2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='929' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <parameter type-id='type-id-661'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <parameter type-id='type-id-663'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='clear' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE5clearEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='950' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_fill_initialize' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE18_M_fill_initializeEmRKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1033' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-49'/>
             <return type-id='type-id-26'/>
@@ -14086,7 +14102,7 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_fill_assign' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE14_M_fill_assignEmRKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-49'/>
             <return type-id='type-id-26'/>
@@ -14094,8 +14110,8 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_fill_insert' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EEmRKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='372' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <parameter type-id='type-id-687'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-49'/>
             <return type-id='type-id-26'/>
@@ -14103,15 +14119,15 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert_aux' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='295' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
-            <parameter type-id='type-id-685'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
+            <parameter type-id='type-id-687'/>
             <parameter type-id='type-id-49'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_check_len' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE12_M_check_lenEmPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1134' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-636' is-artificial='yes'/>
+            <parameter type-id='type-id-638' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-68'/>
             <return type-id='type-id-37'/>
@@ -14119,14 +14135,14 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_erase_at_end' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EE15_M_erase_at_endEPS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1148' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-48'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_range_initialize&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1018' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-145'/>
             <parameter type-id='type-id-145'/>
             <parameter type-id='type-id-275'/>
@@ -14135,7 +14151,7 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_dispatch&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='997' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-145'/>
             <parameter type-id='type-id-145'/>
             <parameter type-id='type-id-274'/>
@@ -14144,7 +14160,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='vector&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='297' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-662' is-artificial='yes'/>
+            <parameter type-id='type-id-664' is-artificial='yes'/>
             <parameter type-id='type-id-145'/>
             <parameter type-id='type-id-145'/>
             <parameter type-id='type-id-163'/>
@@ -14152,12 +14168,12 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-687'/>
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-688'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-689'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-690'/>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-685'/>
-      <class-decl name='__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-686'/>
+      <class-decl name='__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-687'/>
+      <class-decl name='__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-688'/>
     </namespace-decl>
     <namespace-decl name='vtkSurfaceLICPainterUtil'>
       <function-decl name='ilog2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='225' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -14166,8 +14182,8 @@ 
       </function-decl>
       <function-decl name='vtkClamp' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-15'/>
-        <parameter type-id='type-id-629'/>
-        <parameter type-id='type-id-629'/>
+        <parameter type-id='type-id-631'/>
+        <parameter type-id='type-id-631'/>
         <return type-id='type-id-15'/>
       </function-decl>
       <function-decl name='vtkGetNoiseResource' mangled-name='_ZN24vtkSurfaceLICPainterUtil19vtkGetNoiseResourceEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='782' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -14187,54 +14203,54 @@ 
         <parameter type-id='type-id-327'/>
         <return type-id='type-id-26'/>
       </function-decl>
-      <class-decl name='RandomNumberGeneratorInterface' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='246' column='1' id='type-id-654'>
+      <class-decl name='RandomNumberGeneratorInterface' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='246' column='1' id='type-id-656'>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='RNG' type-id='type-id-673' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='289' column='1'/>
+          <var-decl name='RNG' type-id='type-id-675' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='289' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-680' is-artificial='yes'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-680' is-artificial='yes'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='SetSeed' mangled-name='_ZN24vtkSurfaceLICPainterUtil30RandomNumberGeneratorInterface7SetSeedEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-680' is-artificial='yes'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='GetRandomNumber' mangled-name='_ZN24vtkSurfaceLICPainterUtil30RandomNumberGeneratorInterface15GetRandomNumberEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='273' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-680' is-artificial='yes'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
             <return type-id='type-id-15'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator=' mangled-name='_ZN24vtkSurfaceLICPainterUtil30RandomNumberGeneratorInterfaceaSERKS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='285' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-680' is-artificial='yes'/>
-            <parameter type-id='type-id-656'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
+            <parameter type-id='type-id-658'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-680' is-artificial='yes'/>
-            <parameter type-id='type-id-656'/>
+            <parameter type-id='type-id-682' is-artificial='yes'/>
+            <parameter type-id='type-id-658'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='RandomNoise2D' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='299' column='1' id='type-id-678'>
+      <class-decl name='RandomNoise2D' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='299' column='1' id='type-id-680'>
           <member-type access='private'>
-            <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='319' column='1' id='type-id-689'>
+            <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='319' column='1' id='type-id-691'>
               <underlying-type type-id='type-id-24'/>
               <enumerator name='UNIFORM' value='0'/>
               <enumerator name='GAUSSIAN' value='1'/>
@@ -14242,20 +14258,20 @@ 
             </enum-decl>
           </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='ValueGen' type-id='type-id-654' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='390' column='1'/>
+          <var-decl name='ValueGen' type-id='type-id-656' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='390' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='ProbGen' type-id='type-id-654' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='391' column='1'/>
+          <var-decl name='ProbGen' type-id='type-id-656' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='391' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='RandomNoise2D' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='301' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='Generate' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D8GenerateEiRiS1_ffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='324' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-51'/>
             <parameter type-id='type-id-51'/>
@@ -14270,14 +14286,14 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='DeleteValues' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D12DeleteValuesEPh' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-679' is-artificial='yes'/>
-            <parameter type-id='type-id-663'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
+            <parameter type-id='type-id-665'/>
             <return type-id='type-id-26'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='GenerateUniform' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D15GenerateUniformEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='342' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-16'/>
@@ -14291,7 +14307,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='GenerateGaussian' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D16GenerateGaussianEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-16'/>
@@ -14305,7 +14321,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='GeneratePerlin' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D14GeneratePerlinEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-16'/>
@@ -14319,14 +14335,14 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='ShouldGenerateValue' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D19ShouldGenerateValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <parameter type-id='type-id-15'/>
             <return type-id='type-id-17'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='GetValidDimensionAndGrainSize' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D29GetValidDimensionAndGrainSizeEiRiS1_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='387' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-681' is-artificial='yes'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-51'/>
             <parameter type-id='type-id-51'/>
@@ -14335,21 +14351,21 @@ 
         </member-function>
       </class-decl>
     </namespace-decl>
-    <class-decl name='vtkLightingHelper' visibility='default' is-declaration-only='yes' id='type-id-671'>
+    <class-decl name='vtkLightingHelper' visibility='default' is-declaration-only='yes' id='type-id-673'>
         <member-type access='private'>
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkLightingHelper.h' line='42' column='1' id='type-id-690'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkLightingHelper.h' line='42' column='1' id='type-id-692'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='VTK_MAX_LIGHTS' value='8'/>
           </enum-decl>
         </member-type>
       <member-function access='private'>
         <function-decl name='EncodeLightState' mangled-name='_ZN17vtkLightingHelper16EncodeLightStateEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkLightingHelper.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-606' is-artificial='yes'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkMath' visibility='default' is-declaration-only='yes' id='type-id-691'>
+    <class-decl name='vtkMath' visibility='default' is-declaration-only='yes' id='type-id-693'>
       <member-function access='private' static='yes'>
         <function-decl name='UninitializeBounds' mangled-name='_ZN7vtkMath18UninitializeBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkMath.h' line='849' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-194'/>
@@ -14357,31 +14373,31 @@ 
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkCompositeDataSet' visibility='default' is-declaration-only='yes' id='type-id-667'>
+    <class-decl name='vtkCompositeDataSet' visibility='default' is-declaration-only='yes' id='type-id-669'>
       <member-function access='private' static='yes'>
         <function-decl name='SafeDownCast' mangled-name='_ZN19vtkCompositeDataSet12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkCompositeDataSet.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-66'/>
-          <return type-id='type-id-668'/>
+          <return type-id='type-id-670'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkFieldData' visibility='default' is-declaration-only='yes' id='type-id-669'>
+    <class-decl name='vtkFieldData' visibility='default' is-declaration-only='yes' id='type-id-671'>
       <member-function access='private'>
         <function-decl name='GetNumberOfArrays' mangled-name='_ZN12vtkFieldData17GetNumberOfArraysEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkFieldData.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-670' is-artificial='yes'/>
+          <parameter type-id='type-id-672' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkTimerLog' visibility='default' is-declaration-only='yes' id='type-id-681'>
+    <class-decl name='vtkTimerLog' visibility='default' is-declaration-only='yes' id='type-id-683'>
       <data-member access='protected' static='yes'>
         <var-decl name='Logging' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/System/vtkTimerLog.h' line='169' column='1'/>
       </data-member>
     </class-decl>
-    <class-decl name='vtkUniformVariables' visibility='default' is-declaration-only='yes' id='type-id-682'>
+    <class-decl name='vtkUniformVariables' visibility='default' is-declaration-only='yes' id='type-id-684'>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIiEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-54'/>
@@ -14390,7 +14406,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;double&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIdEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-194'/>
@@ -14399,7 +14415,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;float&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIfEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-59'/>
@@ -14408,7 +14424,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformit&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformitIiEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-54'/>
@@ -14417,7 +14433,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIiEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
@@ -14425,7 +14441,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;double&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIdEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-26'/>
@@ -14433,7 +14449,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;float&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIfEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <parameter type-id='type-id-16'/>
           <return type-id='type-id-26'/>
@@ -14441,37 +14457,37 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformit&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformitIiEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-685' is-artificial='yes'/>
           <parameter type-id='type-id-68'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkScalarsToColors' visibility='default' is-declaration-only='yes' id='type-id-676'>
+    <class-decl name='vtkScalarsToColors' visibility='default' is-declaration-only='yes' id='type-id-678'>
       <member-function access='private' static='yes'>
         <function-decl name='SafeDownCast' mangled-name='_ZN18vtkScalarsToColors12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkScalarsToColors.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-66'/>
-          <return type-id='type-id-677'/>
+          <return type-id='type-id-679'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkBackgroundColorMonitor' visibility='default' is-declaration-only='yes' id='type-id-664'/>
-    <class-decl name='vtkCellData' visibility='default' is-declaration-only='yes' id='type-id-665'/>
-    <class-decl name='vtkColorMaterialHelper' visibility='default' is-declaration-only='yes' id='type-id-666'/>
-    <class-decl name='vtkMinimalStandardRandomSequence' visibility='default' is-declaration-only='yes' id='type-id-672'/>
-    <class-decl name='vtkOpenGLLightMonitor' visibility='default' is-declaration-only='yes' id='type-id-674'/>
-    <class-decl name='vtkOpenGLModelViewProjectionMonitor' visibility='default' is-declaration-only='yes' id='type-id-675'/>
-    <class-decl name='vtkWindow' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-684'/>
+    <class-decl name='vtkBackgroundColorMonitor' visibility='default' is-declaration-only='yes' id='type-id-666'/>
+    <class-decl name='vtkCellData' visibility='default' is-declaration-only='yes' id='type-id-667'/>
+    <class-decl name='vtkColorMaterialHelper' visibility='default' is-declaration-only='yes' id='type-id-668'/>
+    <class-decl name='vtkMinimalStandardRandomSequence' visibility='default' is-declaration-only='yes' id='type-id-674'/>
+    <class-decl name='vtkOpenGLLightMonitor' visibility='default' is-declaration-only='yes' id='type-id-676'/>
+    <class-decl name='vtkOpenGLModelViewProjectionMonitor' visibility='default' is-declaration-only='yes' id='type-id-677'/>
+    <class-decl name='vtkWindow' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-686'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
-    <class-decl name='vtkTextureIO' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='33' column='1' id='type-id-692'>
+    <class-decl name='vtkTextureIO' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='33' column='1' id='type-id-694'>
       <member-function access='private' static='yes'>
         <function-decl name='Write' mangled-name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectPKjPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectPKjPKd'>
           <parameter type-id='type-id-68'/>
           <parameter type-id='type-id-325'/>
           <parameter type-id='type-id-57'/>
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-568'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
@@ -14480,7 +14496,7 @@ 
           <parameter type-id='type-id-68'/>
           <parameter type-id='type-id-325'/>
           <parameter type-id='type-id-178'/>
-          <parameter type-id='type-id-566'/>
+          <parameter type-id='type-id-568'/>
           <return type-id='type-id-26'/>
         </function-decl>
       </member-function>
diff --git a/tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi b/tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi
index 8f10a9af..fd4dc5d6 100644
--- a/tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi
+++ b/tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi
@@ -18012,6 +18012,7 @@ 
       </member-function>
     </class-decl>
     <typedef-decl name='time_t' type-id='type-id-1103' filepath='/usr/include/time.h' line='76' column='1' id='type-id-1092'/>
+    <typedef-decl name='__time_t' type-id='type-id-285' filepath='/usr/include/bits/types.h' line='149' column='1' id='type-id-1103'/>
     <class-decl name='siginfo' size-in-bits='1024' is-struct='yes' visibility='default' filepath='/usr/include/bits/siginfo.h' line='52' column='1' id='type-id-1104'>
         <member-type access='public'>
           <union-decl name='__anonymous_union__' size-in-bits='896' is-anonymous='yes' visibility='default' filepath='/usr/include/bits/siginfo.h' line='59' column='1' id='type-id-1105'>
@@ -18123,7 +18124,6 @@ 
         <var-decl name='_sifields' type-id='type-id-1105' visibility='default' filepath='/usr/include/bits/siginfo.h' line='107' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='__time_t' type-id='type-id-285' filepath='/usr/include/bits/types.h' line='149' column='1' id='type-id-1103'/>
     <class-decl name='CpuProfiler' size-in-bits='704' visibility='default' filepath='src/profiler.cc' line='89' column='1' id='type-id-1115'>
       <data-member access='private' static='yes'>
         <var-decl name='instance_' type-id='type-id-1115' mangled-name='_ZN11CpuProfiler9instance_E' visibility='default' filepath='src/profiler.cc' line='107' column='1' elf-symbol-id='_ZN11CpuProfiler9instance_E'/>
diff --git a/tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi b/tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi
index a24189c8..c9fe1c09 100644
--- a/tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi
+++ b/tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi
@@ -31552,16 +31552,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='480' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2203'/>
-        <parameter type-id='type-id-186'/>
-        <return type-id='type-id-2203'/>
-      </function-decl>
-      <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_S3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='469' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_S3_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2206'/>
-        <parameter type-id='type-id-375'/>
-        <return type-id='type-id-2206'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
       <function-decl name='__is_null_pointer&lt;char&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -32364,28 +32354,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='__function_requires&lt;__gnu_cxx::_InputIteratorConcept&lt;char*&gt; &gt;' mangled-name='_ZN9__gnu_cxx19__function_requiresINS_21_InputIteratorConceptIPcEEEEvv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-5'/>
-      </function-decl>
-      <function-decl name='__function_requires&lt;__gnu_cxx::_InputIteratorConcept&lt;const char*&gt; &gt;' mangled-name='_ZN9__gnu_cxx19__function_requiresINS_21_InputIteratorConceptIPKcEEEEvv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-5'/>
-      </function-decl>
-      <function-decl name='__function_requires&lt;__gnu_cxx::_InputIteratorConcept&lt;wchar_t*&gt; &gt;' mangled-name='_ZN9__gnu_cxx19__function_requiresINS_21_InputIteratorConceptIPwEEEEvv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-5'/>
-      </function-decl>
-      <function-decl name='__function_requires&lt;__gnu_cxx::_InputIteratorConcept&lt;const wchar_t*&gt; &gt;' mangled-name='_ZN9__gnu_cxx19__function_requiresINS_21_InputIteratorConceptIPKwEEEEvv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <return type-id='type-id-5'/>
-      </function-decl>
-      <function-decl name='operator==&lt;char*, std::basic_string&lt;char&gt; &gt;' mangled-name='_ZN9__gnu_cxxeqIPcSsEEbRKNS_17__normal_iteratorIT_T0_EES7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='813' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1815'/>
-        <parameter type-id='type-id-1815'/>
-        <return type-id='type-id-42'/>
-      </function-decl>
-      <function-decl name='operator==&lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' mangled-name='_ZN9__gnu_cxxeqIPwSbIwSt11char_traitsIwESaIwEEEEbRKNS_17__normal_iteratorIT_T0_EESB_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='813' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1829'/>
-        <parameter type-id='type-id-1829'/>
-        <return type-id='type-id-42'/>
-      </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/ctype.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
@@ -35888,17 +35856,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='operator!=&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStneIcSt11char_traitsIcEEbRKSt19istreambuf_iteratorIT_T0_ES7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='212' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2575'/>
-        <parameter type-id='type-id-2575'/>
-        <return type-id='type-id-42'/>
-      </function-decl>
-      <function-decl name='__write&lt;char&gt;' mangled-name='_ZSt7__writeIcESt19ostreambuf_iteratorIT_St11char_traitsIS1_EES4_PKS1_i' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2320'/>
-        <parameter type-id='type-id-4'/>
-        <parameter type-id='type-id-6'/>
-        <return type-id='type-id-2320'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
       <function-decl name='__is_null_pointer&lt;const char&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -36047,13 +36004,6 @@ 
               <enumerator name='_S_end' value='11'/>
             </enum-decl>
           </member-type>
-          <member-type access='private'>
-            <class-decl name='pattern' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='844' column='1' id='type-id-2756'>
-              <data-member access='public' layout-offset-in-bits='0'>
-                <var-decl name='field' type-id='type-id-627' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='844' column='1'/>
-              </data-member>
-            </class-decl>
-          </member-type>
           <member-type access='private'>
             <enum-decl name='part' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='843' column='1' id='type-id-2794'>
               <underlying-type type-id='type-id-39'/>
@@ -36064,6 +36014,13 @@ 
               <enumerator name='value' value='4'/>
             </enum-decl>
           </member-type>
+          <member-type access='private'>
+            <class-decl name='pattern' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='844' column='1' id='type-id-2756'>
+              <data-member access='public' layout-offset-in-bits='0'>
+                <var-decl name='field' type-id='type-id-627' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='844' column='1'/>
+              </data-member>
+            </class-decl>
+          </member-type>
         <data-member access='private' static='yes'>
           <var-decl name='_S_default_pattern' type-id='type-id-2757' mangled-name='_ZNSt10money_base18_S_default_patternE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='846' column='1' elf-symbol-id='_ZNSt10money_base18_S_default_patternE@@GLIBCXX_3.4'/>
         </data-member>
@@ -42513,19 +42470,29 @@ 
         <parameter type-id='type-id-4'/>
         <return type-id='type-id-2206'/>
       </function-decl>
-      <function-decl name='flush&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZSt5flushIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt5flushIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_@@GLIBCXX_3.4'>
+      <function-decl name='flush&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZSt5flushIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='584' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt5flushIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_@@GLIBCXX_3.4'>
         <parameter type-id='type-id-2203'/>
         <return type-id='type-id-2203'/>
       </function-decl>
-      <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2203'/>
-        <parameter type-id='type-id-4'/>
+      <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='528' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc@@GLIBCXX_3.4'>
+        <parameter type-id='type-id-2232' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='528' column='1'/>
+        <parameter type-id='type-id-4' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='528' column='1'/>
+        <return type-id='type-id-2203'/>
+      </function-decl>
+      <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='480' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c@@GLIBCXX_3.4'>
+        <parameter type-id='type-id-2232' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='480' column='1'/>
+        <parameter type-id='type-id-186' name='__c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='480' column='1'/>
         <return type-id='type-id-2203'/>
       </function-decl>
-      <function-decl name='flush&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZSt5flushIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt5flushIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_@@GLIBCXX_3.4'>
+      <function-decl name='flush&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZSt5flushIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='584' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt5flushIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_@@GLIBCXX_3.4'>
         <parameter type-id='type-id-2206'/>
         <return type-id='type-id-2206'/>
       </function-decl>
+      <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_S3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='469' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_S3_@@GLIBCXX_3.4'>
+        <parameter type-id='type-id-2248' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='469' column='1'/>
+        <parameter type-id='type-id-375' name='__c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='469' column='1'/>
+        <return type-id='type-id-2206'/>
+      </function-decl>
     </namespace-decl>
     <function-type size-in-bits='64' id='type-id-2949'>
       <parameter type-id='type-id-2948'/>
@@ -47426,17 +47393,6 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <function-decl name='operator!=&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStneIwSt11char_traitsIwEEbRKSt19istreambuf_iteratorIT_T0_ES7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='212' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2579'/>
-        <parameter type-id='type-id-2579'/>
-        <return type-id='type-id-42'/>
-      </function-decl>
-      <function-decl name='__write&lt;wchar_t&gt;' mangled-name='_ZSt7__writeIwESt19ostreambuf_iteratorIT_St11char_traitsIS1_EES4_PKS1_i' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2324'/>
-        <parameter type-id='type-id-354'/>
-        <parameter type-id='type-id-6'/>
-        <return type-id='type-id-2324'/>
-      </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
       <function-decl name='__is_null_pointer&lt;const wchar_t&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>