[Paraview] Xdmf Binary File Integer Bit width

2012-08-23 Thread David Zemon
Follow-up question to "Xdmf Polyvertex, Only First Half Visible": How do you specify the bit width of integers in a binary file from within Xdmf? My script is writing a binary file with 64-bit unsigned integers and I think ParaView is interpreting it as 32-bit. Thanks, David __

Re: [Paraview] Xdmf Binary File Integer Bit width

2012-08-23 Thread David E DeMarle
Try changing from UInt to Int in: testTwoFiles-topology.bin Seems like a bug in XDMF. >From xdmfdataitem.cxx: } else if(XDMF_WORD_CMP(Value, "Int")){ if(Precision == 8){ this->DataDesc->SetNumberType(XDMF_INT64_TYPE); }else{ this->DataDesc->SetNum