From M.Schlottke at aia.rwth-aachen.de Fri May 1 02:23:13 2015 From: M.Schlottke at aia.rwth-aachen.de (Schlottke, Michael) Date: Fri, 1 May 2015 06:23:13 +0000 Subject: [Paraview-developers] Removal of ExecuteData(...) In-Reply-To: References: <8016D5D5-842C-42DA-9EB1-6A353C7DC1E8@aia.rwth-aachen.de> <9FD0E576-756B-461C-91A9-8722F04899FC@aia.rwth-aachen.de> Message-ID: <1D77F9D5-18BB-4015-8F92-61405A0639CC@aia.rwth-aachen.de> The filter *does* something in RequestData, but the Execute() method is a stub (probably implemented back when it still carried some purpose and never removed). I was asking because I?ve already encountered the situation once before that the removal of a (trivial) virtual method caused the parent class method to change the observable behavior in unexpected ways. A quick search of the current VTK sources, however, seems to indicate that the Execute() method is not used anywhere anymore, so I guess I should be safe. Michael On 30 Apr 2015, at 22:58 , Berk Geveci > wrote: Hi Michael, If it is no-op, by all means remove it. What is the purpose of this filter, if it pretty much does nothing? :-) -berk On Thu, Apr 30, 2015 at 1:12 AM, Schlottke, Michael > wrote: Hi Berk, Thank you for your answer. What do you mean by ?minor changes? (other than that I somehow have to obtain the correct output pointer)? And do I really need to pass data to Execute()? As far as I can tell, the particular filter I?m looking at does nothing in Execute() (really a no-op), so it seems like a good candidate to be removed completely. Michale On 28 Apr 2015, at 15:52 , Berk Geveci > wrote: Hi Michael, You will need some minor changes but yes you can move that to RequestData(). You will have to pass the input and output to Execute() somehow. Best, -berk On Tue, Apr 28, 2015 at 5:37 AM, Schlottke, Michael > wrote: Hi again, I am trying to follow the VTK guide (http://www.vtk.org/Wiki/VTK/VTK_6_Migration/Removal_of_Execute) on migrating a set of ParaView plugins from VTK 5 to VTK 6. Just to be sure, what would be the correct way to replace the following implementation: ///////////////////////////////////////////////////////////////////////// void vtkMyAlgorithmSubclass::ExecuteData(vtkDataObject *output) { if (output && this->UpdateExtentIsEmpty(output)) { output->Initialize(); return; } this->Execute(); } ///////////////////////////////////////////////////////////////////////// Can I just move this whole code into RequestData (and use the vtkDataObject* output as a downcast from my output info object)? Is the call to Execute() still needed in this case? Thanks! Michael -- Michael Schlottke Chair of Fluid Mechanics and Institute of Aerodynamics RWTH Aachen University W?llnerstra?e 5a 52062 Aachen Germany Phone: +49 (241) 80 95188 Fax: +49 (241) 80 92257 Mail: m.schlottke at aia.rwth-aachen.de Web: http://www.aia.rwth-aachen.de _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Search the list archives at: http://markmail.org/search/?q=Paraview-developers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview-developers -------------- next part -------------- An HTML attachment was scrubbed... URL: From berk.geveci at kitware.com Fri May 1 09:21:15 2015 From: berk.geveci at kitware.com (Berk Geveci) Date: Fri, 1 May 2015 09:21:15 -0400 Subject: [Paraview-developers] Removal of ExecuteData(...) In-Reply-To: <1D77F9D5-18BB-4015-8F92-61405A0639CC@aia.rwth-aachen.de> References: <8016D5D5-842C-42DA-9EB1-6A353C7DC1E8@aia.rwth-aachen.de> <9FD0E576-756B-461C-91A9-8722F04899FC@aia.rwth-aachen.de> <1D77F9D5-18BB-4015-8F92-61405A0639CC@aia.rwth-aachen.de> Message-ID: Ahhhh! If a filter has RequestData(), which does not call another method such as Execute() or ExecuteData(), it is 100% safe to remove those. Only RequestData() would be called by the superclass and any other method that were there for legacy reasons will never get called. Sorry for being dense :-) -berk On Fri, May 1, 2015 at 2:23 AM, Schlottke, Michael < M.Schlottke at aia.rwth-aachen.de> wrote: > The filter *does* something in RequestData, but the Execute() method is a > stub (probably implemented back when it still carried some purpose and > never removed). > > I was asking because I?ve already encountered the situation once before > that the removal of a (trivial) virtual method caused the parent class > method to change the observable behavior in unexpected ways. A quick search > of the current VTK sources, however, seems to indicate that the Execute() > method is not used anywhere anymore, so I guess I should be safe. > > Michael > > On 30 Apr 2015, at 22:58 , Berk Geveci wrote: > > Hi Michael, > > If it is no-op, by all means remove it. What is the purpose of this > filter, if it pretty much does nothing? :-) > > -berk > > On Thu, Apr 30, 2015 at 1:12 AM, Schlottke, Michael < > M.Schlottke at aia.rwth-aachen.de> wrote: > >> Hi Berk, >> >> Thank you for your answer. What do you mean by ?minor changes? (other >> than that I somehow have to obtain the correct output pointer)? And do I >> really need to pass data to Execute()? As far as I can tell, the particular >> filter I?m looking at does nothing in Execute() (really a no-op), so it >> seems like a good candidate to be removed completely. >> >> Michale >> >> On 28 Apr 2015, at 15:52 , Berk Geveci wrote: >> >> Hi Michael, >> >> You will need some minor changes but yes you can move that to >> RequestData(). You will have to pass the input and output to Execute() >> somehow. >> >> Best, >> -berk >> >> On Tue, Apr 28, 2015 at 5:37 AM, Schlottke, Michael < >> M.Schlottke at aia.rwth-aachen.de> wrote: >> >>> Hi again, >>> >>> I am trying to follow the VTK guide ( >>> http://www.vtk.org/Wiki/VTK/VTK_6_Migration/Removal_of_Execute) on >>> migrating a set of ParaView plugins from VTK 5 to VTK 6. >>> >>> Just to be sure, what would be the correct way to replace the >>> following implementation: >>> >>> >>> ///////////////////////////////////////////////////////////////////////// >>> void vtkMyAlgorithmSubclass::ExecuteData(vtkDataObject *output) >>> >>> { >>> >>> if (output && this->UpdateExtentIsEmpty(output)) >>> >>> { >>> >>> output->Initialize(); >>> >>> return; >>> >>> } >>> >>> >>> >>> this->Execute(); >>> >>> } >>> >>> ///////////////////////////////////////////////////////////////////////// >>> >>> Can I just move this whole code into RequestData (and use the >>> vtkDataObject* output as a downcast from my output info object)? Is the >>> call to Execute() still needed in this case? >>> >>> Thanks! >>> >>> Michael >>> >>> >>> -- >>> Michael Schlottke >>> >>> Chair of Fluid Mechanics and Institute of Aerodynamics >>> RWTH Aachen University >>> W?llnerstra?e 5a >>> 52062 Aachen >>> Germany >>> >>> Phone: +49 (241) 80 95188 >>> Fax: +49 (241) 80 92257 >>> Mail: m.schlottke at aia.rwth-aachen.de >>> Web: http://www.aia.rwth-aachen.de >>> >>> >>> _______________________________________________ >>> Powered by www.kitware.com >>> >>> Visit other Kitware open-source projects at >>> http://www.kitware.com/opensource/opensource.html >>> >>> Search the list archives at: >>> http://markmail.org/search/?q=Paraview-developers >>> >>> Follow this link to subscribe/unsubscribe: >>> http://public.kitware.com/mailman/listinfo/paraview-developers >>> >>> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dragon.prog at gmail.com Mon May 4 07:54:35 2015 From: dragon.prog at gmail.com (Laura Masse) Date: Mon, 4 May 2015 04:54:35 -0700 (PDT) Subject: [Paraview-developers] 3d surface roughness measurement In-Reply-To: References: <1426077979722-3657.post@n6.nabble.com> Message-ID: <1430740475943-3767.post@n6.nabble.com> Hi Kenneth, I take again this threat, I'm sorry for the long delay. The curvature filter seems is the thing I need, I would like to have a numerical indicator of the surface roughness. Curvature filter gives me two different indicator depending which were selected (Gaussian and Mean). In both cases I got data range, but I don?t understand the meaning of these ranges. For example in the case of Mean_Curvatura I got [-199,711, 165.178] Could be is the mean of the bend of all points ? I'm so confuse, please anyone can help me ? Otherwise, Is there a other way to have the roughness indicator ? Advanced thanks !!! - -- View this message in context: http://the-unofficial-paraview-developers-forum.34153.x6.nabble.com/3d-surface-roughness-measurement-tp3657p3767.html Sent from the The Unofficial ParaView Developers Forum mailing list archive at Nabble.com. From chengdi at imech.ac.cn Mon May 4 14:07:47 2015 From: chengdi at imech.ac.cn (Di Cheng) Date: Tue, 5 May 2015 02:07:47 +0800 Subject: [Paraview-developers] Remote rendering requirement of account privilege? Message-ID: <000001d08695$3ac8c670$b05a5350$@imech.ac.cn> Hi, All I am running a remote pvserver on the Ubuntu server 12.04, when I was using old account, it can be run in remote rendering mode with option: "-display localhost:0". When I login as another user, I cannot. And when I connect it from windows, it pops up a window with some information to tell me I cannot do remote rendering. I do not know how remote rendering works, but it seems it requires some account privileges. How can I solve this problem? I have compared those two account, new account belongs to more groups. What can I do to deal with this problem? Using sudo? Di CHENG (Ph.D. candidate) Supersonic Combustion Group State Key Laboratory of High Temperature Gas Dynamics Institute of Mechanics, Chinese Academy of Sciences ADDRESS: No.15 Beisihuanxi Road, Beijing (100190) P. R. China E-mail: chengdi at imech.ac.cn Phone: +86-10-82544053 Fax: +86-10-82544034 ?? ??? ???????? ?????????????? ?????????? ??????????????15? ???100190 ?????chengdi at imech.ac.cn ???+86-10-82544053 ???+86-10-82544034 From strelitz at lanl.gov Mon May 4 14:35:43 2015 From: strelitz at lanl.gov (Richard Strelitz) Date: Mon, 4 May 2015 12:35:43 -0600 Subject: [Paraview-developers] using a set of points as seed inputs for stream filter Message-ID: <002f01d08699$213f76f0$63be64d0$@gov> VTK's stream module allows one to specify the starting points from any VTKPoints data set, whereas Paraview restricts the input to a line, a circle or a point. I would like to seed streamlines from the output of another paraview filter. Any suggestions or snippets? -------------- next part -------------- An HTML attachment was scrubbed... URL: From andy.bauer at kitware.com Mon May 4 14:41:13 2015 From: andy.bauer at kitware.com (Andy Bauer) Date: Mon, 4 May 2015 14:41:13 -0400 Subject: [Paraview-developers] using a set of points as seed inputs for stream filter In-Reply-To: <002f01d08699$213f76f0$63be64d0$@gov> References: <002f01d08699$213f76f0$63be64d0$@gov> Message-ID: Stream Tracer with Custom Source is the filter you want for this. The Input in the dialog that pops up is the data set with the velocity field in it. Seed Source is the data set with the points that the streamlines go through. On Mon, May 4, 2015 at 2:35 PM, Richard Strelitz wrote: > VTK?s stream module allows one to specify the starting points from any > VTKPoints data set, whereas Paraview restricts the input to a line, a > circle or a point. I would like to seed streamlines from the output of > another paraview filter. Any suggestions or snippets? > > > > > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sur.chiranjib at gmail.com Mon May 4 15:10:11 2015 From: sur.chiranjib at gmail.com (Chiranjib Sur) Date: Tue, 5 May 2015 00:40:11 +0530 Subject: [Paraview-developers] vtkAppenPolyData / vtkCleanPolyData Message-ID: Hi All, I just try to understand some logic behind doing the operations vtkAppenPolyData and vtkCleanPolyData. Lets say, I have polydata1 and polydata2. Now if I append the second one with first one I do the following : // Append polydata2 to polydata1 vtkSmartPointer appendPolydata = vtkSmartPointer::New(); #if VTK_MAJOR_VERSION <= 5 appendPolydata->AddInputConnection( polydata1->GetProducerPort()); appendPolydata->AddInputConnection( polydata2->GetProducerPort()); #else appendPolydata->AddInputData( polydata1 ); appendPolydata->AddInputData( polydata2); #endif appendPolydata->Update(); And then clean the appended polydata by doing this // Remove any duplicate points. vtkSmartPointer cleanPolydata = vtkSmartPointer::New(); cleanPolydata->SetInputConnection( appendPolydata->GetOutputPort()); cleanPolydata->Update(); // Update polydata1 polydata1->ShallowCopy( appendPolydata->GetOutput()); I want to understand what happens in the append and clean operations. 1. Does the append operation add two sets of VTK points belong to polydata1 and polydata2 together ? 2. Does the clean operation removed duplicate points ? Where I got confused was when I try to append polydata1 with same polydata1, the vtk points should get doubled (say 2*n) but after I clean the appended data I should get back the number of vtk points = n ( == polydata1->GetNumberOfPoints()). But I still get 2*n number of vtk points. Can anyone explain what is going wrong with my understanding ? Thanks in advance, Chiranjib -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Tue May 5 10:21:02 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Tue, 5 May 2015 10:21:02 -0400 Subject: [Paraview-developers] ANN: Buildbot status page now accessible to everyone! Message-ID: Folks, As many of you know, we have been using Buildbot [1] to drive the merge request testing for VTK and ParaView. Buildbot provides a status page where one can monitor the testing progress as well as the results. Until now, this status page was only accessible within Kitware's network, not anymore! It's now publicly accessible at [2]. We've also written a quick blog post summarizing how to interpret the Buildbot status page here [2]. Any suggestions to improve it further are welcome. Utkarsh [1] http://buildbot.net/ [2] https://builtbot.kitware.com [3] http://www.kitware.com/blog/home/post/875 From jfavre at cscs.ch Tue May 5 10:27:38 2015 From: jfavre at cscs.ch (Favre Jean) Date: Tue, 5 May 2015 14:27:38 +0000 Subject: [Paraview-developers] Parallel execution of vtkPEnSightGoldBinaryReader Message-ID: <0EB9B6375711A04B820E6B6F5CCA9F683185BB8F@MBX111.d.ethz.ch> Hello developers I am seeing ParaView crash when running in parallel to read EnSight Gold Binary rectilinear grids. I think I have identified the problem to be on line 1520 of vtkPEnSightGoldBinaryReader.cxx where the temporary array "scalarsRead" is allocated to read the full scalar fields (even though we should be distributing the array amongst pvservers). The array "scalars" is correctly dimensioned to only hold the subset, but then a loop over ALL nodes is executed to stuff the big array into the smaller one. Resulting in crashes. Can someone confirm of known problems with EnSight Gold in parallel, or am I off in my analysis? Jean/CSCS -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.thompson at kitware.com Tue May 5 10:58:25 2015 From: david.thompson at kitware.com (David Thompson) Date: Tue, 5 May 2015 10:58:25 -0400 Subject: [Paraview-developers] ANN: Buildbot status page now accessible to everyone! In-Reply-To: References: Message-ID: Hi Utkarsh, I think link [2] should be https://buildbot.kitware.com/ . David > As many of you know, we have been using Buildbot [1] to drive the > merge request testing for VTK and ParaView. Buildbot provides a status > page where one can monitor the testing progress as well as the > results. Until now, this status page was only accessible within > Kitware's network, not anymore! It's now publicly accessible at [2]. > > We've also written a quick blog post summarizing how to interpret the > Buildbot status page here [2]. > > Any suggestions to improve it further are welcome. > > Utkarsh > > [1] http://buildbot.net/ > [2] https://builtbot.kitware.com > [3] http://www.kitware.com/blog/home/post/875 > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers From utkarsh.ayachit at kitware.com Tue May 5 11:03:03 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Tue, 5 May 2015 11:03:03 -0400 Subject: [Paraview-developers] ANN: Buildbot status page now accessible to everyone! In-Reply-To: References: Message-ID: > I think link [2] should be https://buildbot.kitware.com/ . Oops :). So it should. From berk.geveci at kitware.com Wed May 6 09:07:36 2015 From: berk.geveci at kitware.com (Berk Geveci) Date: Wed, 6 May 2015 09:07:36 -0400 Subject: [Paraview-developers] Parallel execution of vtkPEnSightGoldBinaryReader In-Reply-To: <0EB9B6375711A04B820E6B6F5CCA9F683185BB8F@MBX111.d.ethz.ch> References: <0EB9B6375711A04B820E6B6F5CCA9F683185BB8F@MBX111.d.ethz.ch> Message-ID: Hi Jean, We probably don't have good coverage for this in our test suite (nor is it something we regularly manually test). Maybe you can put together a test with data and all? Best, -berk On Tue, May 5, 2015 at 10:27 AM, Favre Jean wrote: > > Hello developers > > I am seeing ParaView crash when running in parallel to read EnSight Gold > Binary rectilinear grids. > > I think I have identified the problem to be on line 1520 of > vtkPEnSightGoldBinaryReader.cxx > > where the temporary array "scalarsRead" is allocated to read the full > scalar fields (even though we should be distributing the array amongst > pvservers). The array "scalars" is correctly dimensioned to only hold the > subset, but then a loop over ALL nodes is executed to stuff the big array > into the smaller one. Resulting in crashes. > > Can someone confirm of known problems with EnSight Gold in parallel, or am > I off in my analysis? > > Jean/CSCS > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastien.pulverail at sogeti.com Thu May 7 05:59:46 2015 From: sebastien.pulverail at sogeti.com (PULVERAIL, Sebastien) Date: Thu, 7 May 2015 09:59:46 +0000 Subject: [Paraview-developers] Troubles compiling Paraview on Windows Message-ID: Hello, I'm facing some serious troubles trying to compile ParaView on Windows. Note that the same compilation on a Linux environment with GNU instead of mingw works. Here is the environment I use: - QtCreator 3.3.1 or Eclipse Luna 4.4 - QT 4.8.6 - CMake 2.8 - MinGW 4.4 - Paraview 4.3.1 1/ I run the CMake operation and I can correctly generate the makefiles. 2/ I import the project either on QtCreator or Eclipse => I got the same error at the end. 3/ I launch a full compilation but I first have some code modifications to do : - subprocess.h : change "static string Subprocess::Win32ErrorMessage(DWORD error_code);" to "static string Win32ErrorMessage(DWORD error_code);" to avoid extra configuration error - H5.c : add macro "#if !defined(OPJ_STATIC) && !defined(__MINGW32__)" around DllMain function to avoid multiple definition - paraview_main.cxx : change "#if !defined(_WIN32) || defined(__CYGWIN__)" to "#if !defined(_WIN32) || defined(__CYGWIN__) || defined(__MINGW32__)" to avoid unknown function _dupenv_s All of this leads to the following error message at the end of the build process : Scanning dependencies of target paraview [100%] Building CXX object Applications/ParaView/CMakeFiles/paraview.dir/paraview_main.cxx.obj [100%] Building RC object Applications/ParaView/CMakeFiles/paraview.dir/Icon.rc.obj Command line is too long. C:\MinGW\bin\windres.exe: preprocessing failed. Applications\ParaView\CMakeFiles\paraview.dir\build.make:105: recipe for target 'Applications/ParaView/CMakeFiles/paraview.dir/Icon.rc.obj' failed mingw32-make[2]: *** [Applications/ParaView/CMakeFiles/paraview.dir/Icon.rc.obj] Error 1 CMakeFiles\Makefile2:16792: recipe for target 'Applications/ParaView/CMakeFiles/paraview.dir/all' failed Makefile:115: recipe for target 'all' failed mingw32-make[1]: *** [Applications/ParaView/CMakeFiles/paraview.dir/all] Error 2 mingw32-make: *** [all] Error 2 22:01:07: Process "C:\MinGW\bin\mingw32-make.exe" exit with code 2. Error compiling/deploying project ParaView (kit : MinGW) When executing step "Make" Indeed, when I look to the command line, it is very very long: between 20000 and 29000 characters depending on where I put the paraview build directory. Thank you in advance for your help. S?bastien. -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Thu May 7 08:25:39 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Thu, 7 May 2015 08:25:39 -0400 Subject: [Paraview-developers] Troubles compiling Paraview on Windows In-Reply-To: References: Message-ID: ParaView does not support MinGW. Utkarsh On Thu, May 7, 2015 at 5:59 AM, PULVERAIL, Sebastien wrote: > Hello, > > > > I?m facing some serious troubles trying to compile ParaView on Windows. > > Note that the same compilation on a Linux environment with GNU instead of > mingw works. > > > > Here is the environment I use: > > - QtCreator 3.3.1 or Eclipse Luna 4.4 > > - QT 4.8.6 > > - CMake 2.8 > > - MinGW 4.4 > > - Paraview 4.3.1 > > > > 1/ I run the CMake operation and I can correctly generate the makefiles. > > 2/ I import the project either on QtCreator or Eclipse => I got the same > error at the end. > > 3/ I launch a full compilation but I first have some code modifications to > do : > > - subprocess.h : change ?static string > Subprocess::Win32ErrorMessage(DWORD error_code);? to ?static string > Win32ErrorMessage(DWORD error_code);? to avoid extra configuration error > > - H5.c : add macro ?#if !defined(OPJ_STATIC) && > !defined(__MINGW32__)? around DllMain function to avoid multiple definition > > - paraview_main.cxx : change ?#if !defined(_WIN32) || > defined(__CYGWIN__)? to ?#if !defined(_WIN32) || defined(__CYGWIN__) || > defined(__MINGW32__)? to avoid unknown function _dupenv_s > > > > All of this leads to the following error message at the end of the build > process : > > Scanning dependencies of target paraview > > [100%] Building CXX object > Applications/ParaView/CMakeFiles/paraview.dir/paraview_main.cxx.obj > > [100%] Building RC object > Applications/ParaView/CMakeFiles/paraview.dir/Icon.rc.obj > > Command line is too long. > > C:\MinGW\bin\windres.exe: preprocessing failed. > > Applications\ParaView\CMakeFiles\paraview.dir\build.make:105: recipe for > target 'Applications/ParaView/CMakeFiles/paraview.dir/Icon.rc.obj' failed > > mingw32-make[2]: *** > [Applications/ParaView/CMakeFiles/paraview.dir/Icon.rc.obj] Error 1 > > CMakeFiles\Makefile2:16792: recipe for target > 'Applications/ParaView/CMakeFiles/paraview.dir/all' failed > > Makefile:115: recipe for target 'all' failed > > mingw32-make[1]: *** [Applications/ParaView/CMakeFiles/paraview.dir/all] > Error 2 > > mingw32-make: *** [all] Error 2 > > 22:01:07: Process "C:\MinGW\bin\mingw32-make.exe" exit with code 2. > > Error compiling/deploying project ParaView (kit : MinGW) > > When executing step "Make" > > > > Indeed, when I look to the command line, it is very very long: between 20000 > and 29000 characters depending on where I put the paraview build directory. > > > > Thank you in advance for your help. > > > > S?bastien. > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > From ben.boeckel at kitware.com Thu May 7 11:25:29 2015 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Thu, 7 May 2015 11:25:29 -0400 Subject: [Paraview-developers] Troubles compiling Paraview on Windows In-Reply-To: References: Message-ID: <20150507152529.GA4633@megas.kitware.com> On Thu, May 07, 2015 at 09:59:46 +0000, PULVERAIL, Sebastien wrote: > Indeed, when I look to the command line, it is very very long: between 20000 > and 29000 characters depending on where I put the paraview build directory. While we don't support MinGW, I have fixed this specific issue since 4.3.1. See the following ParaView commits: commit ce04c1ff17c4327310e4cb3033529aa4cdc087e2 Author: Ben Boeckel Date: Tue Mar 10 17:47:45 2015 -0400 branding: only use the rc target hack for non-VS Change-Id: I67aaad70fd8c61d4bad4538946c9ef19101e1ef6 commit b64ca409fbe616a3a83e1c02d3e84f8ded814771 Author: Ben Boeckel Date: Fri Mar 6 18:03:23 2015 -0500 windows: reduce the size of the command line for the RC compiler Change-Id: Ic9d643bb63b02feb7ac5ef099f85ef78ebec7c96 and these from VTK: commit b144b68838a0590c8ea7dbf773c89aa90df2ad30 Author: Ben Boeckel Date: Tue Mar 10 15:04:48 2015 -0400 vtkpython: avoid vtkpythonrc hack in Visual Studio It handles response files itself. Change-Id: Icf50178289028a0c56dcb89bbb0db7044b571d9a commit a701e9c04282ca184ac7c7641f57751331ff5536 Author: Ben Boeckel Date: Thu Mar 5 15:37:25 2015 -0500 windows: compile the vtkpython.rc file separately On Windows, if a build tree has a long path, the command line length limit can be exceeded. This is normally handled by using response files to store the command line arguments rather than passing them directly. Unfortunately, CMake does not support this for RC files. To address this, compile the rc file separately. Change-Id: Ie91e9578c6cf41f7386b914e408c6369c733117f I'm not sure if something else would be required for Eclipse or QtCreator, but it works for Ninja at least. --Ben From dave.demarle at kitware.com Thu May 7 11:31:08 2015 From: dave.demarle at kitware.com (David E DeMarle) Date: Thu, 7 May 2015 11:31:08 -0400 Subject: [Paraview-developers] Troubles compiling Paraview on Windows In-Reply-To: <20150507152529.GA4633@megas.kitware.com> References: <20150507152529.GA4633@megas.kitware.com> Message-ID: We still have a VTK dashboard running a very old mingw so likely not too hard to get ParaView going. Would need a volunteer to contribute and monitor nightly ParaView dashboard though to make it happen. David E DeMarle Kitware, Inc. R&D Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4909 On Thu, May 7, 2015 at 11:25 AM, Ben Boeckel wrote: > On Thu, May 07, 2015 at 09:59:46 +0000, PULVERAIL, Sebastien wrote: > > Indeed, when I look to the command line, it is very very long: between > 20000 > > and 29000 characters depending on where I put the paraview build > directory. > > While we don't support MinGW, I have fixed this specific issue since > 4.3.1. See the following ParaView commits: > > commit ce04c1ff17c4327310e4cb3033529aa4cdc087e2 > Author: Ben Boeckel > Date: Tue Mar 10 17:47:45 2015 -0400 > > branding: only use the rc target hack for non-VS > > Change-Id: I67aaad70fd8c61d4bad4538946c9ef19101e1ef6 > > commit b64ca409fbe616a3a83e1c02d3e84f8ded814771 > Author: Ben Boeckel > Date: Fri Mar 6 18:03:23 2015 -0500 > > windows: reduce the size of the command line for the RC compiler > > Change-Id: Ic9d643bb63b02feb7ac5ef099f85ef78ebec7c96 > > and these from VTK: > > commit b144b68838a0590c8ea7dbf773c89aa90df2ad30 > Author: Ben Boeckel > Date: Tue Mar 10 15:04:48 2015 -0400 > > vtkpython: avoid vtkpythonrc hack in Visual Studio > > It handles response files itself. > > Change-Id: Icf50178289028a0c56dcb89bbb0db7044b571d9a > > commit a701e9c04282ca184ac7c7641f57751331ff5536 > Author: Ben Boeckel > Date: Thu Mar 5 15:37:25 2015 -0500 > > windows: compile the vtkpython.rc file separately > > On Windows, if a build tree has a long path, the command line > length > limit can be exceeded. This is normally handled by using response > files > to store the command line arguments rather than passing them > directly. > Unfortunately, CMake does not support this for RC files. To address > this, compile the rc file separately. > > Change-Id: Ie91e9578c6cf41f7386b914e408c6369c733117f > > I'm not sure if something else would be required for Eclipse or QtCreator, > but > it works for Ninja at least. > > --Ben > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From anton.piccardo-selg at stfc.ac.uk Fri May 8 12:11:46 2015 From: anton.piccardo-selg at stfc.ac.uk (anton.piccardo-selg at stfc.ac.uk) Date: Fri, 8 May 2015 16:11:46 +0000 Subject: [Paraview-developers] How to detect a change of the range of the color scale when edited in the color editor panel? Message-ID: <593AFCE559F11049B8F268BE84170A0DC40E4C@EXCHMBX01.fed.cclrc.ac.uk> Hi, Our ParaView customization has custom fields where the user can enter min and max values for the color scale range. This works fine. In addition, when the user opens the color editor panel, it is possible to change the min and max values as well. We would like to detect when a user alters these values in the color editor panel to update our custom display. Hence my question: Where is the best place to hook into to detect if the user edited the color scale in the color editor panel? Many thanks and best regards, Anton From utkarsh.ayachit at kitware.com Fri May 8 13:24:01 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Fri, 8 May 2015 13:24:01 -0400 Subject: [Paraview-developers] How to detect a change of the range of the color scale when edited in the color editor panel? In-Reply-To: <593AFCE559F11049B8F268BE84170A0DC40E4C@EXCHMBX01.fed.cclrc.ac.uk> References: <593AFCE559F11049B8F268BE84170A0DC40E4C@EXCHMBX01.fed.cclrc.ac.uk> Message-ID: Most operations in ParaView, including this one, affect properties on proxies. You can monitor the appropriate SMProperty by observerving the vtkCommand::Modified event. Additionally, the vtkSMSessionProxyManager invokes vtkCommand::PropertyModified event when any properties on registered proxies are modified. You can monitor that one too. The calldata for the event indentifies the proxy and property modified (see ~vtkSMSessionProxyManager.cxx:112). On Fri, May 8, 2015 at 12:11 PM, wrote: > Hi, > > Our ParaView customization has custom fields where the user can enter min and max values for the color scale range. This works fine. In addition, when the user opens the color editor panel, it is possible to change the min and max values as well. > > We would like to detect when a user alters these values in the color editor panel to update our custom display. > Hence my question: Where is the best place to hook into to detect if the user edited the color scale in the color editor panel? > > Many thanks and best regards, > > Anton > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers From jfavre at cscs.ch Mon May 11 10:17:26 2015 From: jfavre at cscs.ch (Favre Jean) Date: Mon, 11 May 2015 14:17:26 +0000 Subject: [Paraview-developers] Parallel execution of vtkPEnSightGoldBinaryReader In-Reply-To: References: <0EB9B6375711A04B820E6B6F5CCA9F683185BB8F@MBX111.d.ethz.ch>, Message-ID: <0EB9B6375711A04B820E6B6F5CCA9F68366C4069@MBX111.d.ethz.ch> Is the included python test enough? It uses the standard EnSight case file distributed with VTKData: VTKData/Data/EnSight/RectGrid_bin.case When executed in serial, it prints out the correct values of the min and max for the "scalars". When executed in parallel, it prints out bogus values. ----------------- Jean -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: test_EnSight_rectGrid.py Type: text/x-python Size: 899 bytes Desc: test_EnSight_rectGrid.py URL: From berk.geveci at kitware.com Mon May 11 21:02:36 2015 From: berk.geveci at kitware.com (Berk Geveci) Date: Mon, 11 May 2015 21:02:36 -0400 Subject: [Paraview-developers] IEEE Scientific Visualization Contest Message-ID: Hi folks, We invite you to participate in the 2015 IEEE Scientific Visualization Contest. This year's contest targets data from cosmology research that studies the formation of structure in the Universe. Participants are challenged to create a comprehensive set of analysis and visualization capabilities that enable domain experts to gain deeper insight into the formation of various structures in the Universe and better understanding of observations from next generation telescopes. Besides a number of interesting incentives, the contest winners will be presenting their work at IEEE VIS 2015 and they will get a chance to publish their results as a full, peer-reviewed IEEE CG&A article. Find out more at http://sciviscontest.ieeevis.org/2015/ Best, -berk -------------- next part -------------- An HTML attachment was scrubbed... URL: From berk.geveci at kitware.com Mon May 11 21:46:21 2015 From: berk.geveci at kitware.com (Berk Geveci) Date: Mon, 11 May 2015 21:46:21 -0400 Subject: [Paraview-developers] Parallel execution of vtkPEnSightGoldBinaryReader In-Reply-To: <0EB9B6375711A04B820E6B6F5CCA9F68366C4069@MBX111.d.ethz.ch> References: <0EB9B6375711A04B820E6B6F5CCA9F683185BB8F@MBX111.d.ethz.ch> <0EB9B6375711A04B820E6B6F5CCA9F68366C4069@MBX111.d.ethz.ch> Message-ID: Great :-) This week is crazy for me. I'll try to take a look next week. Unless someone beats me to it of course! On Mon, May 11, 2015 at 10:17 AM, Favre Jean wrote: > > Is the included python test enough? It uses the standard EnSight case file > distributed with VTKData: VTKData/Data/EnSight/RectGrid_bin.case > > When executed in serial, it prints out the correct values of the min and > max for the "scalars". > When executed in parallel, it prints out bogus values. > > ----------------- > Jean > -------------- next part -------------- An HTML attachment was scrubbed... URL: From felipe.bordeu at ec-nantes.fr Tue May 12 11:27:09 2015 From: felipe.bordeu at ec-nantes.fr (Felipe Bordeu) Date: Tue, 12 May 2015 17:27:09 +0200 Subject: [Paraview-developers] add property dynamicaly to a reader Message-ID: <55521BCD.50704@ec-nantes.fr> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hi, I have custom reader for multidimensional data (4D-5D...). Normally I associate 3 dimensions to the X-Y-Z of the 3D view, and one dimension to time, and fix all the rest. This way I can visualise a 4Dimensional slice of my NDimensional data. With this a can animate the slice using the time of paraview. but now I want to animate the others dimensions... The problem is that the names and the number of dimension is file dependent. So my question is, Can I dynamically (and how ) add properties to the filters so Paraview will show it in the Animation View (comparative view) ??? (using latest git version, c++). Thanks - -- Felipe Bordeu Weldt Ing?nieur de Recherche - ------------------------------------- T?l. : 33 (0)2 40 37 16 57 Fax. : 33 (0)2 40 74 74 06 Felipe.Bordeu at ec-nantes.fr Institut GeM - UMR CNRS 6183 ?cole Centrale Nantes 1 Rue de La No?, 44321 Nantes, FRANCE - ------------------------------------- -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iQEcBAEBAgAGBQJVUhvNAAoJEE/fMfNgU9/Do8gIAK+x8kVwCAUrN/VqlwKTm3Qj cUGk4oRAdJ5JCVHiXdKR2gSIioTjF5NNZZD0LBbFpmd+6KCIiEGJ8+1CyYJ8uMrH rPDxoT+HszKPXDlysFBCUzAe2ss2fKNXTlH+rcQHIX5COmHsWm8v8PogSbJmbyPk zak8NaOBUGFzaDYWMW/E1zticJWhsg70FM0BBxDttMP36pdKCYRp4PQSQ3GkmZil lvufXKLLrcjRnlPH6T+g5Qjj2wah7Tk+9BZPGndVsmu4rXO+XzSuKoaFBIBukpre RujS11WfK95Fk9MlTK+zDE1lwyLTDTBsI7AeJwfwwjx5PiCH0d5wWQ51sPwPlsc= =eIsz -----END PGP SIGNATURE----- From prashant.v at quest-global.com Mon May 18 23:11:00 2015 From: prashant.v at quest-global.com (Prashant V) Date: Tue, 19 May 2015 03:11:00 +0000 Subject: [Paraview-developers] Getting previously selected filters programmatically Message-ID: Hi, I am new to ParaView and developing a Paraview plugin. What I want to do with plugin is: 1) User loads MultiBlockDataSet through File->Open (Standard paraview operation; not part of my plugin) 2) Apply some filters (Standard paraview operation; not part of my plugin) 3) Click on Apply button (MultiBlockData is rendered; Standard paraview operation; not part of my plugin) 4) Now user clicks my plugin button/icon at toolbar. My plugin fetches a different MultiBlockDataSet data from a database, apply same filter properties (as selected by user in step 2) and renders in Paraview. I went through the API and understood that I can get selected filters through vtkSMSessionProxyManager class using GetProxy() method (which returns vtkSMProxy object). However I couldn't find how to apply this vtkSMProxy object to MultiBlockDataSet programmatically. Am i going in right direction? Is there any other way of applying previously selected filters to dataset programmatically? Thanks a lot in anticipation of help! Prashant ---Disclaimer------------------------------ This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely for the use of the addressee(s). If you are not the intended recipient, please notify the sender by e-mail and delete the original message. Opinions, conclusions and other information in this transmission that do not relate to the official business of QuEST Global and/or its subsidiaries, shall be understood as neither given nor endorsed by it. Any statements made herein that are tantamount to contractual obligations, promises, claims or commitments shall not be binding on the Company unless followed by written confirmation by an authorized signatory of the Company. ----------------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Tue May 19 09:50:47 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Tue, 19 May 2015 09:50:47 -0400 Subject: [Paraview-developers] Getting previously selected filters programmatically In-Reply-To: References: Message-ID: Prashant, Here's how I would do this (if I follow your goal currectly). + Create a new VTK reader/source by subclassing vtkAlgorithm (or vtkMultiBlockDataSetAlgorithm) that reads the database to produce the MultiBlockDataSet of interest. + Define a proxy for this reader/source. See ParaView Plugins Howto (http://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Adding_a_Reader). + Now, when the button is clicked, instantiate your reader proxy and then create new proxies for the pipeline you're interested and connect to this source proxy. In ParaView you create pipelines to operate on data, you don't connect the data directly to anything. Hope that helps. Utkarsh On Mon, May 18, 2015 at 11:11 PM, Prashant V wrote: > Hi, > > > > I am new to ParaView and developing a Paraview plugin. What I want to do > with plugin is: > > > > 1) User loads MultiBlockDataSet through File->Open (Standard paraview > operation; not part of my plugin) > 2) Apply some filters (Standard paraview operation; not part of my plugin) > 3) Click on Apply button (MultiBlockData is rendered; Standard paraview > operation; not part of my plugin) > > > > 4) Now user clicks my plugin button/icon at toolbar. My plugin fetches a > different MultiBlockDataSet data from a database, apply same filter > properties (as selected by user in step 2) and renders in Paraview. > > > > I went through the API and understood that I can get selected filters > through vtkSMSessionProxyManager class using GetProxy() method (which > returns vtkSMProxy object). However I couldn't find how to apply this > vtkSMProxy object to MultiBlockDataSet programmatically. > > > > Am i going in right direction? Is there any other way of applying previously > selected filters to dataset programmatically? Thanks a lot in anticipation > of help! > > > > Prashant > > > > ---Disclaimer------------------------------ This e-mail contains PRIVILEGED > AND CONFIDENTIAL INFORMATION intended solely for the use of the > addressee(s). If you are not the intended recipient, please notify the > sender by e-mail and delete the original message. Opinions, conclusions and > other information in this transmission that do not relate to the official > business of QuEST Global and/or its subsidiaries, shall be understood as > neither given nor endorsed by it. Any statements made herein that are > tantamount to contractual obligations, promises, claims or commitments shall > not be binding on the Company unless followed by written confirmation by an > authorized signatory of the Company. > ----------------------------------------------------------------------------------- > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > From utkarsh.ayachit at kitware.com Wed May 20 11:15:49 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Wed, 20 May 2015 11:15:49 -0400 Subject: [Paraview-developers] Remote rendering requirement of account privilege? In-Reply-To: <000001d08695$3ac8c670$b05a5350$@imech.ac.cn> References: <000001d08695$3ac8c670$b05a5350$@imech.ac.cn> Message-ID: You may want to check this (and related documentation) out: http://www.x.org/archive/X11R6.8.0/doc/xhost.1.html Utkarsh On Mon, May 4, 2015 at 2:07 PM, Di Cheng wrote: > Hi, All > > I am running a remote pvserver on the Ubuntu server 12.04, when I was using old account, it can be run in remote rendering mode with option: "-display localhost:0". When I login as another user, I cannot. And when I connect it from windows, it pops up a window with some information to tell me I cannot do remote rendering. > > I do not know how remote rendering works, but it seems it requires some account privileges. How can I solve this problem? I have compared those two account, new account belongs to more groups. What can I do to deal with this problem? Using sudo? > > Di CHENG (Ph.D. candidate) > Supersonic Combustion Group > State Key Laboratory of High Temperature Gas Dynamics > Institute of Mechanics, Chinese Academy of Sciences > ADDRESS: No.15 Beisihuanxi Road, Beijing (100190) > P. R. China > E-mail: chengdi at imech.ac.cn > Phone: +86-10-82544053 > Fax: +86-10-82544034 > > ?? ??? > ???????? > ?????????????? > ?????????? > ??????????????15? > ???100190 > ?????chengdi at imech.ac.cn > ???+86-10-82544053 > ???+86-10-82544034 > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers From chengdi at imech.ac.cn Wed May 20 21:42:22 2015 From: chengdi at imech.ac.cn (Di Cheng) Date: Thu, 21 May 2015 09:42:22 +0800 Subject: [Paraview-developers] Remote rendering requirement of account privilege? In-Reply-To: References: <000001d08695$3ac8c670$b05a5350$@imech.ac.cn> Message-ID: <000501d09367$6265aed0$27310c70$@imech.ac.cn> Utkarsh Thanks for your reply. I tried to use "xhost +", but did not succeed. I also tried to " export XAUTHORITY=~/.Xauthority ", it did not work either. here is some detail of my system. ------------------------------------------------------------------------------------------------------------------- catdog at wei-H8QG6:~$ export DISPLAY=:0.0 catdog at wei-H8QG6:~$ xhost + No protocol specified No protocol specified xhost: unable to open display ":0.0" catdog at wei-H8QG6:~$ ps aux|grep X catdog 15983 0.0 0.0 13588 920 pts/12 S+ 23:34 0:00 grep --color=auto X root 31779 0.3 0.0 156600 48244 tty7 Ss+ May13 36:32 /usr/bin/X :0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch catdog at wei-H8QG6:~$ uname -a Linux wei-H8QG6 3.13.0-46-generic #79~precise1-Ubuntu SMP Tue Mar 10 20:25:33 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux catdog at wei-H8QG6:~$ xeyes -display :0.0 No protocol specified No protocol specified Error: Can't open display: :0.0 catdog at wei-H8QG6:~$ xauth list wei-H8QG6/unix:15 MIT-MAGIC-COOKIE-1 936664cd6304286ff79270c271ed3189 wei-H8QG6/unix:13 MIT-MAGIC-COOKIE-1 b11a44d6fb0786b816c73adf6bb0d361 wei-H8QG6/unix:14 MIT-MAGIC-COOKIE-1 b11a44d6fb0786b816c73adf6bb0d361 wei-H8QG6/unix:11 MIT-MAGIC-COOKIE-1 b77e756d05b97bdbade08e384c144a73 ------------------------------------------------------------------------------------------------------------------- -----Original Message----- From: Utkarsh Ayachit [mailto:utkarsh.ayachit at kitware.com] Sent: Wednesday, May 20, 2015 11:16 PM To: Di Cheng Cc: ParaView Developers Subject: Re: [Paraview-developers] Remote rendering requirement of account privilege? You may want to check this (and related documentation) out: http://www.x.org/archive/X11R6.8.0/doc/xhost.1.html Utkarsh On Mon, May 4, 2015 at 2:07 PM, Di Cheng wrote: > Hi, All > > I am running a remote pvserver on the Ubuntu server 12.04, when I was using old account, it can be run in remote rendering mode with option: "-display localhost:0". When I login as another user, I cannot. And when I connect it from windows, it pops up a window with some information to tell me I cannot do remote rendering. > > I do not know how remote rendering works, but it seems it requires some account privileges. How can I solve this problem? I have compared those two account, new account belongs to more groups. What can I do to deal with this problem? Using sudo? > > Di CHENG (Ph.D. candidate) > Supersonic Combustion Group > State Key Laboratory of High Temperature Gas Dynamics Institute of > Mechanics, Chinese Academy of Sciences > ADDRESS: No.15 Beisihuanxi Road, Beijing (100190) P. R. China > E-mail: chengdi at imech.ac.cn > Phone: +86-10-82544053 > Fax: +86-10-82544034 > > ?? ??? > ???????? > ?????????????? > ?????????? > ??????????????15? > ???100190 > ?????chengdi at imech.ac.cn > ???+86-10-82544053 > ???+86-10-82544034 > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers From utkarsh.ayachit at kitware.com Thu May 21 11:36:50 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Thu, 21 May 2015 11:36:50 -0400 Subject: [Paraview-developers] Remote rendering requirement of account privilege? In-Reply-To: <000501d09367$6265aed0$27310c70$@imech.ac.cn> References: <000001d08695$3ac8c670$b05a5350$@imech.ac.cn> <000501d09367$6265aed0$27310c70$@imech.ac.cn> Message-ID: Di, Try running "xhost +" with sudo. Utkarsh On Wed, May 20, 2015 at 9:42 PM, Di Cheng wrote: > Utkarsh > > Thanks for your reply. > I tried to use "xhost +", but did not succeed. I also tried to " export XAUTHORITY=~/.Xauthority ", it did not work either. > > here is some detail of my system. > ------------------------------------------------------------------------------------------------------------------- > catdog at wei-H8QG6:~$ export DISPLAY=:0.0 > catdog at wei-H8QG6:~$ xhost + > No protocol specified > No protocol specified > xhost: unable to open display ":0.0" > catdog at wei-H8QG6:~$ ps aux|grep X > catdog 15983 0.0 0.0 13588 920 pts/12 S+ 23:34 0:00 grep --color=auto X > root 31779 0.3 0.0 156600 48244 tty7 Ss+ May13 36:32 /usr/bin/X :0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch > catdog at wei-H8QG6:~$ uname -a > Linux wei-H8QG6 3.13.0-46-generic #79~precise1-Ubuntu SMP Tue Mar 10 20:25:33 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux > catdog at wei-H8QG6:~$ xeyes -display :0.0 > No protocol specified > No protocol specified > Error: Can't open display: :0.0 > catdog at wei-H8QG6:~$ xauth list > wei-H8QG6/unix:15 MIT-MAGIC-COOKIE-1 936664cd6304286ff79270c271ed3189 > wei-H8QG6/unix:13 MIT-MAGIC-COOKIE-1 b11a44d6fb0786b816c73adf6bb0d361 > wei-H8QG6/unix:14 MIT-MAGIC-COOKIE-1 b11a44d6fb0786b816c73adf6bb0d361 > wei-H8QG6/unix:11 MIT-MAGIC-COOKIE-1 b77e756d05b97bdbade08e384c144a73 > ------------------------------------------------------------------------------------------------------------------- > > -----Original Message----- > From: Utkarsh Ayachit [mailto:utkarsh.ayachit at kitware.com] > Sent: Wednesday, May 20, 2015 11:16 PM > To: Di Cheng > Cc: ParaView Developers > Subject: Re: [Paraview-developers] Remote rendering requirement of account privilege? > > You may want to check this (and related documentation) out: > http://www.x.org/archive/X11R6.8.0/doc/xhost.1.html > > Utkarsh > > On Mon, May 4, 2015 at 2:07 PM, Di Cheng wrote: >> Hi, All >> >> I am running a remote pvserver on the Ubuntu server 12.04, when I was using old account, it can be run in remote rendering mode with option: "-display localhost:0". When I login as another user, I cannot. And when I connect it from windows, it pops up a window with some information to tell me I cannot do remote rendering. >> >> I do not know how remote rendering works, but it seems it requires some account privileges. How can I solve this problem? I have compared those two account, new account belongs to more groups. What can I do to deal with this problem? Using sudo? >> >> Di CHENG (Ph.D. candidate) >> Supersonic Combustion Group >> State Key Laboratory of High Temperature Gas Dynamics Institute of >> Mechanics, Chinese Academy of Sciences >> ADDRESS: No.15 Beisihuanxi Road, Beijing (100190) P. R. China >> E-mail: chengdi at imech.ac.cn >> Phone: +86-10-82544053 >> Fax: +86-10-82544034 >> >> ?? ??? >> ???????? >> ?????????????? >> ?????????? >> ??????????????15? >> ???100190 >> ?????chengdi at imech.ac.cn >> ???+86-10-82544053 >> ???+86-10-82544034 >> >> >> >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Search the list archives at: >> http://markmail.org/search/?q=Paraview-developers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/paraview-developers > > From utkarsh.ayachit at kitware.com Thu May 21 14:12:27 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Thu, 21 May 2015 14:12:27 -0400 Subject: [Paraview-developers] Moving certain documentation from Wiki to Doxygen Message-ID: Folks, A little while ago we added support to generate Doxygen HTML pages using Markdown files. Since then, we've created a few pages to document some of the developer APIs: http://www.paraview.org/ParaView3/Doc/Nightly/www/cxx-doc/index.html The question I have is should we move more things from the Wiki such as [1], [2] to such Markdown files that Doxygen processes? This will certainly make versioning easier. Also Doxygen puts links to classes when referred to in any of these processed markdown files (that's one reason why to process these pages using Doxygen rather than simply accessing through Gitlab). Any thoughts? Utkarsh [1] http://www.paraview.org/Wiki/Plugin_HowTo [2] http://www.paraview.org/Wiki/ServerManager_XML_Hints From chengdi at imech.ac.cn Fri May 22 23:08:41 2015 From: chengdi at imech.ac.cn (Di Cheng) Date: Sat, 23 May 2015 11:08:41 +0800 Subject: [Paraview-developers] Remote rendering requirement of account privilege? In-Reply-To: References: <000001d08695$3ac8c670$b05a5350$@imech.ac.cn> <000501d09367$6265aed0$27310c70$@imech.ac.cn> Message-ID: <000601d09505$c68403e0$538c0ba0$@imech.ac.cn> Utkarsh I think I just figured out what is the problem. According to the "ps aux|grep X" command, the Xserver is started. But the Ubuntu OS is a desktop OS. There is a bug/feature that the ~/.Xauthority file does not contain necessary magic cookie to connect the xserver. So here is a solution: $ sudo xauth -i list #check if there is xserver :0 authentication information $ sudo xauth merge And the location of authority file can be found using "ps aux|grep X" A little problem is the ~/.Xauthority becomes owned by "root". So chown and chgrp should be called to change the owner and group Then "xhost +local:" can be called $ -----Original Message----- From: Utkarsh Ayachit [mailto:utkarsh.ayachit at kitware.com] Sent: Thursday, May 21, 2015 11:37 PM To: Di Cheng Cc: ParaView Developers Subject: Re: [Paraview-developers] Remote rendering requirement of account privilege? Di, Try running "xhost +" with sudo. Utkarsh On Wed, May 20, 2015 at 9:42 PM, Di Cheng wrote: > Utkarsh > > Thanks for your reply. > I tried to use "xhost +", but did not succeed. I also tried to " export XAUTHORITY=~/.Xauthority ", it did not work either. > > here is some detail of my system. > ---------------------------------------------------------------------- > --------------------------------------------- > catdog at wei-H8QG6:~$ export DISPLAY=:0.0 catdog at wei-H8QG6:~$ xhost + No > protocol specified No protocol specified > xhost: unable to open display ":0.0" > catdog at wei-H8QG6:~$ ps aux|grep X > catdog 15983 0.0 0.0 13588 920 pts/12 S+ 23:34 0:00 grep --color=auto X > root 31779 0.3 0.0 156600 48244 tty7 Ss+ May13 36:32 /usr/bin/X :0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch > catdog at wei-H8QG6:~$ uname -a > Linux wei-H8QG6 3.13.0-46-generic #79~precise1-Ubuntu SMP Tue Mar 10 > 20:25:33 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux catdog at wei-H8QG6:~$ > xeyes -display :0.0 No protocol specified No protocol specified > Error: Can't open display: :0.0 > catdog at wei-H8QG6:~$ xauth list > wei-H8QG6/unix:15 MIT-MAGIC-COOKIE-1 > 936664cd6304286ff79270c271ed3189 > wei-H8QG6/unix:13 MIT-MAGIC-COOKIE-1 > b11a44d6fb0786b816c73adf6bb0d361 > wei-H8QG6/unix:14 MIT-MAGIC-COOKIE-1 > b11a44d6fb0786b816c73adf6bb0d361 > wei-H8QG6/unix:11 MIT-MAGIC-COOKIE-1 > b77e756d05b97bdbade08e384c144a73 > ---------------------------------------------------------------------- > --------------------------------------------- > > -----Original Message----- > From: Utkarsh Ayachit [mailto:utkarsh.ayachit at kitware.com] > Sent: Wednesday, May 20, 2015 11:16 PM > To: Di Cheng > Cc: ParaView Developers > Subject: Re: [Paraview-developers] Remote rendering requirement of account privilege? > > You may want to check this (and related documentation) out: > http://www.x.org/archive/X11R6.8.0/doc/xhost.1.html > > Utkarsh > > On Mon, May 4, 2015 at 2:07 PM, Di Cheng wrote: >> Hi, All >> >> I am running a remote pvserver on the Ubuntu server 12.04, when I was using old account, it can be run in remote rendering mode with option: "-display localhost:0". When I login as another user, I cannot. And when I connect it from windows, it pops up a window with some information to tell me I cannot do remote rendering. >> >> I do not know how remote rendering works, but it seems it requires some account privileges. How can I solve this problem? I have compared those two account, new account belongs to more groups. What can I do to deal with this problem? Using sudo? >> >> Di CHENG (Ph.D. candidate) >> Supersonic Combustion Group >> State Key Laboratory of High Temperature Gas Dynamics Institute of >> Mechanics, Chinese Academy of Sciences >> ADDRESS: No.15 Beisihuanxi Road, Beijing (100190) P. R. China >> E-mail: chengdi at imech.ac.cn >> Phone: +86-10-82544053 >> Fax: +86-10-82544034 >> >> ?? ??? >> ???????? >> ?????????????? >> ?????????? >> ??????????????15? >> ???100190 >> ?????chengdi at imech.ac.cn >> ???+86-10-82544053 >> ???+86-10-82544034 >> >> >> >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Search the list archives at: >> http://markmail.org/search/?q=Paraview-developers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/paraview-developers > > From gianluigi.caddeo at gmail.com Sat May 23 07:16:03 2015 From: gianluigi.caddeo at gmail.com (gianluigi caddeo) Date: Sat, 23 May 2015 12:16:03 +0100 Subject: [Paraview-developers] Problem installing ParaViewWeb by source Message-ID: Hi all I'm tempting to install ParaViewWeb edition, and I have two questions: 1) During (standard) installation procedure I have the error below, how to solve? [ 29%] Built target vtkIOParallelXMLObjects Linking CXX shared library ../lib/libvtkParallel-pv4.3.so Filters/ParallelMPI/CMakeFiles/vtkFiltersParallelMPIObjects.dir/vtkDistributedDataFilter.cxx.o: In function `vtkDistributedDataFilter::AddConstantUnsignedCharPointArray(vtkUnstructuredGrid*, char const*, unsigned char)': vtkDistributedDataFilter.cxx:(.text+0x2a03): warning: memset used with constant zero length parameter; this could be due to transposed parameters collect2: error: ld returned 1 exit status VTK/CMakeFiles/vtkParallel.dir/build.make:190: recipe for target 'lib/libvtkParallel-pv4.3.so.1' failed make[2]: *** [lib/libvtkParallel-pv4.3.so.1] Error 1 CMakeFiles/Makefile2:1301: recipe for target 'VTK/CMakeFiles/vtkParallel.dir/all' failed make[1]: *** [VTK/CMakeFiles/vtkParallel.dir/all] Error 2 Makefile:137: recipe for target 'all' failed make: *** [all] Error 2 2) I would like install vtk in a different directory, will be possible to link vtk from ParaViewWeb and not install it in ParaViewWeb? thank you a lot for your help regards Gianluigi -- Gianluigi Caddeo Via Miniere 7, 09010 Nuxis | Italy T +39 377 670 2550 Skype ggigi78 This e-mail is confidential and may also contain privileged information. If you are not the intended recipient you are not authorised to read, print, save, process or disclose this message. If you have received this message by mistake, please inform the sender immediately and delete this e-mail, its attachments and any copies. Any use, distribution, reproduction or disclosure by any person other than the intended recipient is strictly prohibited and the person responsible may incur penalties. Thank you -------------- next part -------------- An HTML attachment was scrubbed... URL: From berk.geveci at kitware.com Tue May 26 08:19:32 2015 From: berk.geveci at kitware.com (Berk Geveci) Date: Tue, 26 May 2015 08:19:32 -0400 Subject: [Paraview-developers] CFP: SC '15 Scientific Visualization Showcase Message-ID: Hi folks, The Call for Participation for the SC '15 Scientific Visualization Showcase is out. This is a great opportunity for the community to highlight the wonderful visualization work going on. Please consider submitting an entry (or more). http://sc15.supercomputing.org/program/scientific-visualization-showcase SC15?s Visualization and Data Analytics Showcase Program provides a forum for the year's most instrumental movies in HPC. Six finalists will compete for the Best Visualization Award, and each finalist will present his or her movie during a dedicated session at SC15 in a 15-minute presentation. Movies are judged based on how their movie illuminates science, by the quality of the movie, and for innovations in the process used for creating the movie. Best, -berk -------------- next part -------------- An HTML attachment was scrubbed... URL: From scott.wittenburg at kitware.com Tue May 26 12:08:57 2015 From: scott.wittenburg at kitware.com (Scott Wittenburg) Date: Tue, 26 May 2015 10:08:57 -0600 Subject: [Paraview-developers] Problem installing ParaViewWeb by source In-Reply-To: References: Message-ID: I'm not sure what the cause of your compilation failure is, but I do not believe it is specific to or related to ParaViewWeb. The thing that makes a normal ParaView build into a ParaViewWeb build is simply enabling Python in the configure step. Out of curiosity, what settings did you turn on/off in your configure step? Also, if you could provide more details about your intentions/goals for installing VTK in a different directory, it may help regular list readers to better assist you. And finally, I believe you will target a wider audience by sending this kind of question to the paraview users list (paraview at paraview.org), rather than (or at least in addition to) the developers list. Cheers, Scott On Sat, May 23, 2015 at 5:16 AM, gianluigi caddeo < gianluigi.caddeo at gmail.com> wrote: > Hi all > > I'm tempting to install ParaViewWeb edition, and I have two questions: > 1) During (standard) installation procedure I have the error below, how to > solve? > > [ 29%] Built target vtkIOParallelXMLObjects Linking CXX shared library > ../lib/libvtkParallel-pv4.3.so > Filters/ParallelMPI/CMakeFiles/vtkFiltersParallelMPIObjects.dir/vtkDistributedDataFilter.cxx.o: > In function > `vtkDistributedDataFilter::AddConstantUnsignedCharPointArray(vtkUnstructuredGrid*, > char const*, unsigned char)': vtkDistributedDataFilter.cxx:(.text+0x2a03): > warning: memset used with constant zero length parameter; this could be due > to transposed parameters collect2: error: ld returned 1 exit status > VTK/CMakeFiles/vtkParallel.dir/build.make:190: recipe for target > 'lib/libvtkParallel-pv4.3.so.1' failed make[2]: *** > [lib/libvtkParallel-pv4.3.so.1] Error 1 CMakeFiles/Makefile2:1301: recipe > for target 'VTK/CMakeFiles/vtkParallel.dir/all' failed make[1]: *** > [VTK/CMakeFiles/vtkParallel.dir/all] Error 2 Makefile:137: recipe for > target 'all' failed make: *** [all] Error 2 > > 2) I would like install vtk in a different directory, will be possible to > link vtk from ParaViewWeb and not install it in ParaViewWeb? > > thank you a lot for your help > regards > Gianluigi > > > -- > > Gianluigi Caddeo > > Via Miniere 7, > 09010 Nuxis | Italy > > T +39 377 670 2550 > Skype ggigi78 > > This e-mail is confidential and may also contain privileged information. > If you are not the intended recipient you are not authorised to read, > print, save, process or disclose this message. If you have received this > message by mistake, please inform the sender immediately and delete this > e-mail, its attachments and any copies. > > Any use, distribution, reproduction or disclosure by any person other than > the intended recipient is strictly prohibited and the person responsible > may incur penalties. > > Thank you > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From guohanqi at gmail.com Tue May 26 15:47:01 2015 From: guohanqi at gmail.com (Hanqi Guo) Date: Tue, 26 May 2015 14:47:01 -0500 Subject: [Paraview-developers] ParaviewSuperBuild Problem Message-ID: Hi, I'm trying to use ParaviewSuperBuild on OS X Yosemite 10.10.3, and the system clang version is 6.1.0. I have some errors when I build, and what could I do to solve this problem? Thanks. Best, Hanqi Guo CMake Warning at CMakeLists.txt:5 (message): Ensure that CMAKE_OSX_SYSROOT, CMAKE_OSX_DEPLOYMENT_TARGET are set correctly -- Manta is currently not supported on Macs -- Using system python. Pick correct python based on your deployment target -- Enabling paraview as requested. -- PROJECTS_ENABLED paraview -- Configuring done -- Generating done -- Build files have been written to: /Users/hguo/workspace/compile/ParaViewSuperbuild/build [ 12%] Performing update step for 'paraview' [ 25%] Performing configure step for 'paraview' -- The C compiler identification is unknown -- The CXX compiler identification is unknown -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- broken CMake Error at /Users/hguo/local/cmake-3.2.2/share/cmake-3.2/Modules/CMakeTestCCompiler.cmake:61 (message): The C compiler "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc" is not able to compile a simple test program. It fails with the following output: Change Dir: /Users/hguo/workspace/compile/ParaViewSuperbuild/build/paraview/src/paraview-build/CMakeFiles/CMakeTmp Run Build Command:"/usr/bin/make" "cmTryCompileExec1161683309/fast" /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec1161683309.dir/build.make CMakeFiles/cmTryCompileExec1161683309.dir/build /Users/hguo/local/cmake-3.2.2/bin/cmake -E cmake_progress_report /Users/hguo/workspace/compile/ParaViewSuperbuild/build/paraview/src/paraview-build/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec1161683309.dir/testCCompiler.c.o /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -arch x86_64 -mmacosx-version-min= --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk -o CMakeFiles/cmTryCompileExec1161683309.dir/testCCompiler.c.o -c /Users/hguo/workspace/compile/ParaViewSuperbuild/build/paraview/src/paraview-build/CMakeFiles/CMakeTmp/testCCompiler.c clang: error: invalid version number in '-mmacosx-version-min=' make[4]: *** [CMakeFiles/cmTryCompileExec1161683309.dir/testCCompiler.c.o] Error 1 make[3]: *** [cmTryCompileExec1161683309/fast] Error 2 CMake will not be able to correctly generate this project. Call Stack (most recent call first): CMakeLists.txt:40 (project) -- Configuring incomplete, errors occurred! See also "/Users/hguo/workspace/compile/ParaViewSuperbuild/build/paraview/src/paraview-build/CMakeFiles/CMakeOutput.log". See also "/Users/hguo/workspace/compile/ParaViewSuperbuild/build/paraview/src/paraview-build/CMakeFiles/CMakeError.log". make[2]: *** [paraview/src/paraview-stamp/paraview-configure] Error 1 make[1]: *** [CMakeFiles/paraview.dir/all] Error 2 make: *** [all] Error 2 -- Hanqi Guo -------------- next part -------------- An HTML attachment was scrubbed... URL: From felipe.bordeu at ec-nantes.fr Wed May 27 03:49:31 2015 From: felipe.bordeu at ec-nantes.fr (Felipe Bordeu) Date: Wed, 27 May 2015 09:49:31 +0200 Subject: [Paraview-developers] add property dynamicaly to a reader In-Reply-To: <55521BCD.50704@ec-nantes.fr> References: <55521BCD.50704@ec-nantes.fr> Message-ID: <5565770B.1080906@ec-nantes.fr> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Any insight, on who to add a property to my reader (c++) so it is visible in the animation View, (comparative View) at run time??? Le 12/05/2015 17:27, Felipe Bordeu a ?crit : > > hi, > > I have custom reader for multidimensional data (4D-5D...). Normally I > associate 3 dimensions to the X-Y-Z of the 3D view, and one dimension to > time, and fix all the rest. This way I can visualise a 4Dimensional > slice of my NDimensional data. With this a can animate the slice using > the time of paraview. but now I want to animate the others dimensions... > The problem is that the names and the number of dimension is file > dependent. So my question is, Can I dynamically (and how ) add > properties to the filters so Paraview will show it in the Animation View > (comparative view) ??? (using latest git version, c++). > > > Thanks > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers - -- Felipe Bordeu Weldt Ing?nieur de Recherche - ------------------------------------- T?l. : 33 (0)2 40 37 16 57 Fax. : 33 (0)2 40 74 74 06 Felipe.Bordeu at ec-nantes.fr Institut GeM - UMR CNRS 6183 ?cole Centrale Nantes 1 Rue de La No?, 44321 Nantes, FRANCE - ------------------------------------- -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iQEcBAEBAgAGBQJVZXcLAAoJEE/fMfNgU9/Dl/0IAMgNKAjqtxNX3PwmcyiGa9r7 AABYQIKgcP+daTAcDdvq8E7bHH1ePUmkju3NAMtZ4YD9ikQY+znFel0RzgKLrujQ 9h2QrfHqQ2/FugP+r/QD7poFHZcNtzIGeJKLj8WwuQNpq9mU6vY2O6TW7i578mxC 7I9HnFDhVLpg7ZS61vmb+bnhEhAvmRM8vgoEFKQ3lJPQGvOh5F3Hcn17P/yM8zrQ 2BN0lPote1AXmrKYVakeZSyecel4N6EGcbN3h+t7fNMc+4EzBysABoaVhRYF1R3o yN6+g04xHc9fcqjsR6eKypGNyz5YdgEpbSQ7hJRQJFOh2HDQoUYI0TKljSmza28= =f9jH -----END PGP SIGNATURE----- -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastien.pulverail at sogeti.com Wed May 27 04:58:57 2015 From: sebastien.pulverail at sogeti.com (PULVERAIL, Sebastien) Date: Wed, 27 May 2015 08:58:57 +0000 Subject: [Paraview-developers] Troubles compiling Paraview on Windows In-Reply-To: References: <20150507152529.GA4633@megas.kitware.com> Message-ID: Hello, Sorry to answer so late, I was a little bit busy. Thank you for all your help. Finally we choose to use Visual Studio to compile Paraview. I will retry later with Eclipse or QtCreator. S?bastien. De : David E DeMarle [mailto:dave.demarle at kitware.com] Envoy? : jeudi 7 mai 2015 17:31 ? : Ben Boeckel Cc : PULVERAIL, Sebastien; paraview-developers at paraview.org; JAMMET, Fabien; GATTANO-DOUILLARD, Delphine Objet : Re: [Paraview-developers] Troubles compiling Paraview on Windows We still have a VTK dashboard running a very old mingw so likely not too hard to get ParaView going. Would need a volunteer to contribute and monitor nightly ParaView dashboard though to make it happen. David E DeMarle Kitware, Inc. R&D Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4909 On Thu, May 7, 2015 at 11:25 AM, Ben Boeckel > wrote: On Thu, May 07, 2015 at 09:59:46 +0000, PULVERAIL, Sebastien wrote: > Indeed, when I look to the command line, it is very very long: between 20000 > and 29000 characters depending on where I put the paraview build directory. While we don't support MinGW, I have fixed this specific issue since 4.3.1. See the following ParaView commits: commit ce04c1ff17c4327310e4cb3033529aa4cdc087e2 Author: Ben Boeckel > Date: Tue Mar 10 17:47:45 2015 -0400 branding: only use the rc target hack for non-VS Change-Id: I67aaad70fd8c61d4bad4538946c9ef19101e1ef6 commit b64ca409fbe616a3a83e1c02d3e84f8ded814771 Author: Ben Boeckel > Date: Fri Mar 6 18:03:23 2015 -0500 windows: reduce the size of the command line for the RC compiler Change-Id: Ic9d643bb63b02feb7ac5ef099f85ef78ebec7c96 and these from VTK: commit b144b68838a0590c8ea7dbf773c89aa90df2ad30 Author: Ben Boeckel > Date: Tue Mar 10 15:04:48 2015 -0400 vtkpython: avoid vtkpythonrc hack in Visual Studio It handles response files itself. Change-Id: Icf50178289028a0c56dcb89bbb0db7044b571d9a commit a701e9c04282ca184ac7c7641f57751331ff5536 Author: Ben Boeckel > Date: Thu Mar 5 15:37:25 2015 -0500 windows: compile the vtkpython.rc file separately On Windows, if a build tree has a long path, the command line length limit can be exceeded. This is normally handled by using response files to store the command line arguments rather than passing them directly. Unfortunately, CMake does not support this for RC files. To address this, compile the rc file separately. Change-Id: Ie91e9578c6cf41f7386b914e408c6369c733117f I'm not sure if something else would be required for Eclipse or QtCreator, but it works for Ninja at least. --Ben _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Search the list archives at: http://markmail.org/search/?q=Paraview-developers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview-developers This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message. -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastien.pulverail at sogeti.com Wed May 27 05:18:31 2015 From: sebastien.pulverail at sogeti.com (PULVERAIL, Sebastien) Date: Wed, 27 May 2015 09:18:31 +0000 Subject: [Paraview-developers] Error loading my own plugin in custom application based on ParaView Message-ID: Hello, I have made my own custom application based on ParaView. As with ParaView, I am using a plugin manager to let the user adding their own readers. All compile fine but when I load (or autoload) one of the plugin I create, I get the following error when launching the binary: ./bin/Extrafor: symbol lookup error: /data/samba/spulvera/EXTRAFOR/STELIA-EXTRAFOR/build/bin/../lib//libExtraforReaders.so: undefined symbol: _Z22extraforException_InitP26vtkClientServerInterpreter Here is the CMakeLists.txt I use for my plugin: #------------------------------------------------------------------------------ # Find and Use ParaView #------------------------------------------------------------------------------ IF(PARAVIEW_BUILD_QT_GUI) IF(PARAVIEW_QT_VERSION VERSION_GREATER "4") SET (Qt5_FIND_COMPONENTS Widgets) INCLUDE (ParaViewQt5) ELSE() INCLUDE(${QT_USE_FILE}) ENDIF() ENDIF() #------------------------------------------------------------------------------ # Define source and header files to be compile #------------------------------------------------------------------------------ set (SOURCES Common/extraforException.h Common/extraforTypes.h Common/jsonReader.cxx Common/jsonReader.h Common/streamReader.cxx Common/streamReader.h NastranReader/coordinateSystems.cxx NastranReader/coordinateSystems.h NastranReader/nastranReader.cxx NastranReader/nastranReader.h NastranReader/pvExtraforNastranReader.cxx NastranReader/pvExtraforNastranReader.h JExtpointReader/jextpointReader.cxx JExtpointReader/jextpointReader.h JExtpointReader/pvExtraforJExtPointReader.cxx JExtpointReader/pvExtraforJExtPointReader.h JLoadsReader/jloadsReader.cxx JLoadsReader/jloadsReader.h JLoadsReader/pvExtraforJLoadsReader.cxx JLoadsReader/pvExtraforJLoadsReader.h ) #------------------------------------------------------------------------------ # Add directories where to find headers to be included #------------------------------------------------------------------------------ include_directories ( Common ) include_directories ( NastranReader ) include_directories ( JExtpointReader ) include_directories ( JLoadsReader ) include_directories ( ${Boost_INCLUDE_DIR} ) include_directories ( ${Jansson_INCLUDE_DIR} ) #------------------------------------------------------------------------------ # Add directories where to find libraries to be linked #------------------------------------------------------------------------------ link_directories ( ${Boost_LIBRARY_DIR} ) link_directories ( ${Jansson_LIBRARY_DIR} ) # --------------------------------------------------------------------------- # Combined plugin # ----------------------------------------------------------------------------- if (PARAVIEW_BUILD_QT_GUI) add_paraview_plugin(ExtraforReaders "1.0" REQUIRED_ON_SERVER SERVER_MANAGER_SOURCES ${SOURCES} ) else() add_paraview_plugin(ExtraforReaders "1.0" REQUIRED_ON_SERVER SERVER_MANAGER_SOURCES ${SOURCES} ) endif() #------------------------------------------------------------------------------ # #------------------------------------------------------------------------------ target_link_libraries( ExtraforReaders LINK_PRIVATE -ljansson -lboost_system ) Did I miss something? Tell me if you need extra information to help me fix this problem. Thanks in advance. S?bastien This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message. -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Wed May 27 08:07:46 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Wed, 27 May 2015 08:07:46 -0400 Subject: [Paraview-developers] ParaviewSuperBuild Problem In-Reply-To: References: Message-ID: Ensure that CMAKE_OSX_SYSROOT, CMAKE_OSX_DEPLOYMENT_TARGET cmake variables are set correctly. e.g. CMAKE_OSX_SYSROOT:PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk CMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.10 On Tue, May 26, 2015 at 3:47 PM, Hanqi Guo wrote: > Hi, > > I'm trying to use ParaviewSuperBuild on OS X Yosemite 10.10.3, and the > system clang version is 6.1.0. I have some errors when I build, and what > could I do to solve this problem? Thanks. > > Best, > Hanqi Guo > > > CMake Warning at CMakeLists.txt:5 (message): > > Ensure that CMAKE_OSX_SYSROOT, CMAKE_OSX_DEPLOYMENT_TARGET are set > > correctly > > > > -- Manta is currently not supported on Macs > > -- Using system python. Pick correct python based on your deployment target > > -- Enabling paraview as requested. > > -- PROJECTS_ENABLED paraview > > -- Configuring done > > -- Generating done > > -- Build files have been written to: > /Users/hguo/workspace/compile/ParaViewSuperbuild/build > > [ 12%] Performing update step for 'paraview' > > [ 25%] Performing configure step for 'paraview' > > -- The C compiler identification is unknown > > -- The CXX compiler identification is unknown > > -- Check for working C compiler: > /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc > > -- Check for working C compiler: > /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc > -- broken > > CMake Error at > /Users/hguo/local/cmake-3.2.2/share/cmake-3.2/Modules/CMakeTestCCompiler.cmake:61 > (message): > > The C compiler > > > "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc" > > is not able to compile a simple test program. > > > It fails with the following output: > > > Change Dir: > /Users/hguo/workspace/compile/ParaViewSuperbuild/build/paraview/src/paraview-build/CMakeFiles/CMakeTmp > > > > > > Run Build Command:"/usr/bin/make" "cmTryCompileExec1161683309/fast" > > > /Applications/Xcode.app/Contents/Developer/usr/bin/make -f > > CMakeFiles/cmTryCompileExec1161683309.dir/build.make > > CMakeFiles/cmTryCompileExec1161683309.dir/build > > > /Users/hguo/local/cmake-3.2.2/bin/cmake -E cmake_progress_report > > > /Users/hguo/workspace/compile/ParaViewSuperbuild/build/paraview/src/paraview-build/CMakeFiles/CMakeTmp/CMakeFiles > > 1 > > > Building C object > > CMakeFiles/cmTryCompileExec1161683309.dir/testCCompiler.c.o > > > > > > /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc > > -fPIC -arch x86_64 -mmacosx-version-min= > > > --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk > > -o CMakeFiles/cmTryCompileExec1161683309.dir/testCCompiler.c.o -c > > > /Users/hguo/workspace/compile/ParaViewSuperbuild/build/paraview/src/paraview-build/CMakeFiles/CMakeTmp/testCCompiler.c > > > > clang: error: invalid version number in '-mmacosx-version-min=' > > > make[4]: *** [CMakeFiles/cmTryCompileExec1161683309.dir/testCCompiler.c.o] > > Error 1 > > > make[3]: *** [cmTryCompileExec1161683309/fast] Error 2 > > > > > > > > > CMake will not be able to correctly generate this project. > > Call Stack (most recent call first): > > CMakeLists.txt:40 (project) > > > > -- Configuring incomplete, errors occurred! > > See also > "/Users/hguo/workspace/compile/ParaViewSuperbuild/build/paraview/src/paraview-build/CMakeFiles/CMakeOutput.log". > > See also > "/Users/hguo/workspace/compile/ParaViewSuperbuild/build/paraview/src/paraview-build/CMakeFiles/CMakeError.log". > > make[2]: *** [paraview/src/paraview-stamp/paraview-configure] Error 1 > > make[1]: *** [CMakeFiles/paraview.dir/all] Error 2 > > make: *** [all] Error 2 > > > -- > Hanqi Guo > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > From gianluigi.caddeo at gmail.com Wed May 27 15:03:46 2015 From: gianluigi.caddeo at gmail.com (gianluigi caddeo) Date: Wed, 27 May 2015 20:03:46 +0100 Subject: [Paraview-developers] Problem installing ParaViewWeb by source In-Reply-To: References: Message-ID: Hi, many thanks for your help :). I must Admit that I'm a beginner with this wonderful tools, and I am very sorry to not have learned them before, but still very happy to starting learn now, as how say: better late than never My goals will be insert some piece of code in vtk and Paraview, and by somewhere i have to start. Just to start I installed Paraview with all web key word installed, maybe during my first, second , ....etc installations there was some thing wrong, but with a little bit of patient i solved. I hope in your help to solve the future problems :), that, sure, there will be. Please, be patient (For questions related to installations will send a mail to users list ;)) Do you advise me to buy a Kitware book? if yes, what? Thank you a lot. Regards Have a fantastic day. G. 2015-05-26 17:08 GMT+01:00 Scott Wittenburg : > I'm not sure what the cause of your compilation failure is, but I do not > believe it is specific to or related to ParaViewWeb. The thing that makes > a normal ParaView build into a ParaViewWeb build is simply enabling Python > in the configure step. Out of curiosity, what settings did you turn on/off > in your configure step? > > Also, if you could provide more details about your intentions/goals for > installing VTK in a different directory, it may help regular list readers > to better assist you. > > And finally, I believe you will target a wider audience by sending this > kind of question to the paraview users list (paraview at paraview.org), > rather than (or at least in addition to) the developers list. > > Cheers, > Scott > > On Sat, May 23, 2015 at 5:16 AM, gianluigi caddeo < > gianluigi.caddeo at gmail.com> wrote: > >> Hi all >> >> I'm tempting to install ParaViewWeb edition, and I have two questions: >> 1) During (standard) installation procedure I have the error below, how >> to solve? >> >> [ 29%] Built target vtkIOParallelXMLObjects Linking CXX shared library >> ../lib/libvtkParallel-pv4.3.so >> Filters/ParallelMPI/CMakeFiles/vtkFiltersParallelMPIObjects.dir/vtkDistributedDataFilter.cxx.o: >> In function >> `vtkDistributedDataFilter::AddConstantUnsignedCharPointArray(vtkUnstructuredGrid*, >> char const*, unsigned char)': vtkDistributedDataFilter.cxx:(.text+0x2a03): >> warning: memset used with constant zero length parameter; this could be due >> to transposed parameters collect2: error: ld returned 1 exit status >> VTK/CMakeFiles/vtkParallel.dir/build.make:190: recipe for target >> 'lib/libvtkParallel-pv4.3.so.1' failed make[2]: *** >> [lib/libvtkParallel-pv4.3.so.1] Error 1 CMakeFiles/Makefile2:1301: recipe >> for target 'VTK/CMakeFiles/vtkParallel.dir/all' failed make[1]: *** >> [VTK/CMakeFiles/vtkParallel.dir/all] Error 2 Makefile:137: recipe for >> target 'all' failed make: *** [all] Error 2 >> >> 2) I would like install vtk in a different directory, will be possible to >> link vtk from ParaViewWeb and not install it in ParaViewWeb? >> >> thank you a lot for your help >> regards >> Gianluigi >> >> >> -- >> >> Gianluigi Caddeo >> >> Via Miniere 7, >> 09010 Nuxis | Italy >> >> T +39 377 670 2550 >> Skype ggigi78 >> >> This e-mail is confidential and may also contain privileged information. >> If you are not the intended recipient you are not authorised to read, >> print, save, process or disclose this message. If you have received this >> message by mistake, please inform the sender immediately and delete this >> e-mail, its attachments and any copies. >> >> Any use, distribution, reproduction or disclosure by any person other >> than the intended recipient is strictly prohibited and the person >> responsible may incur penalties. >> >> Thank you >> >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Search the list archives at: >> http://markmail.org/search/?q=Paraview-developers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/paraview-developers >> >> > -- Gianluigi Caddeo Via Miniere 7, 09010 Nuxis | Italy T +39 377 670 2550 Skype ggigi78 This e-mail is confidential and may also contain privileged information. If you are not the intended recipient you are not authorised to read, print, save, process or disclose this message. If you have received this message by mistake, please inform the sender immediately and delete this e-mail, its attachments and any copies. Any use, distribution, reproduction or disclosure by any person other than the intended recipient is strictly prohibited and the person responsible may incur penalties. Thank you -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Thu May 28 07:09:10 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Thu, 28 May 2015 07:09:10 -0400 Subject: [Paraview-developers] Error loading my own plugin in custom application based on ParaView In-Reply-To: References: Message-ID: Looks like extraforException.h (and may be more) headers are not VTK classes. Try removing them from the the SOURCES list entirely. On Wed, May 27, 2015 at 5:18 AM, PULVERAIL, Sebastien wrote: > Hello, > > > > I have made my own custom application based on ParaView. As with ParaView, I > am using a plugin manager to let the user adding their own readers. > > All compile fine but when I load (or autoload) one of the plugin I create, I > get the following error when launching the binary: > > > > ./bin/Extrafor: symbol lookup error: > /data/samba/spulvera/EXTRAFOR/STELIA-EXTRAFOR/build/bin/../lib//libExtraforReaders.so: > undefined symbol: _Z22extraforException_InitP26vtkClientServerInterpreter > > > > Here is the CMakeLists.txt I use for my plugin: > > > > #------------------------------------------------------------------------------ > > # Find and Use ParaView > > #------------------------------------------------------------------------------ > > IF(PARAVIEW_BUILD_QT_GUI) > > IF(PARAVIEW_QT_VERSION VERSION_GREATER "4") > > SET (Qt5_FIND_COMPONENTS Widgets) > > INCLUDE (ParaViewQt5) > > ELSE() > > INCLUDE(${QT_USE_FILE}) > > ENDIF() > > ENDIF() > > > > #------------------------------------------------------------------------------ > > # Define source and header files to be compile > > #------------------------------------------------------------------------------ > > set (SOURCES > > Common/extraforException.h > > Common/extraforTypes.h > > Common/jsonReader.cxx > > Common/jsonReader.h > > Common/streamReader.cxx > > Common/streamReader.h > > NastranReader/coordinateSystems.cxx > > NastranReader/coordinateSystems.h > > NastranReader/nastranReader.cxx > > NastranReader/nastranReader.h > > NastranReader/pvExtraforNastranReader.cxx > > NastranReader/pvExtraforNastranReader.h > > JExtpointReader/jextpointReader.cxx > > JExtpointReader/jextpointReader.h > > JExtpointReader/pvExtraforJExtPointReader.cxx > > JExtpointReader/pvExtraforJExtPointReader.h > > JLoadsReader/jloadsReader.cxx > > JLoadsReader/jloadsReader.h > > JLoadsReader/pvExtraforJLoadsReader.cxx > > JLoadsReader/pvExtraforJLoadsReader.h > > ) > > > > #------------------------------------------------------------------------------ > > # Add directories where to find headers to be included > > #------------------------------------------------------------------------------ > > include_directories ( Common ) > > include_directories ( NastranReader ) > > include_directories ( JExtpointReader ) > > include_directories ( JLoadsReader ) > > include_directories ( ${Boost_INCLUDE_DIR} ) > > include_directories ( ${Jansson_INCLUDE_DIR} ) > > > > #------------------------------------------------------------------------------ > > # Add directories where to find libraries to be linked > > #------------------------------------------------------------------------------ > > link_directories ( ${Boost_LIBRARY_DIR} ) > > link_directories ( ${Jansson_LIBRARY_DIR} ) > > > > # > --------------------------------------------------------------------------- > > # Combined plugin > > # > ----------------------------------------------------------------------------- > > if (PARAVIEW_BUILD_QT_GUI) > > add_paraview_plugin(ExtraforReaders "1.0" > > REQUIRED_ON_SERVER > > SERVER_MANAGER_SOURCES ${SOURCES} > > ) > > else() > > add_paraview_plugin(ExtraforReaders "1.0" > > REQUIRED_ON_SERVER > > SERVER_MANAGER_SOURCES ${SOURCES} > > ) > > endif() > > > > #------------------------------------------------------------------------------ > > # > > #------------------------------------------------------------------------------ > > target_link_libraries( ExtraforReaders LINK_PRIVATE -ljansson -lboost_system > ) > > > > Did I miss something? > > Tell me if you need extra information to help me fix this problem. > > > > Thanks in advance. > > > > S?bastien > > This message contains information that may be privileged or confidential and > is the property of the Capgemini Group. It is intended only for the person > to whom it is addressed. If you are not the intended recipient, you are not > authorized to read, print, retain, copy, disseminate, distribute, or use > this message or any part thereof. If you receive this message in error, > please notify the sender immediately and delete all copies of this message. > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > From berk.geveci at kitware.com Fri May 29 10:50:11 2015 From: berk.geveci at kitware.com (Berk Geveci) Date: Fri, 29 May 2015 10:50:11 -0400 Subject: [Paraview-developers] ANNOUNCE: Kitware is hiring Message-ID: Hi folks, We are looking to hire visualization developers to our Scientific Computing team. If you are a talented visualization researcher and developer with strong C++ skills, please consider applying. You will join a great team and work on many interesting and challenging technical problems - always aiming to deliver robust and widely used software solutions. For the full posting see: http://tinyurl.com/l8sgvzw JOB DESCRIPTION Kitware is seeking to hire highly skilled Research and Development Engineers (R&D Engineers) to join our Scientific Computing team and contribute to our scientific and information visualization efforts. Candidates will work to develop and improve leading visualization software solutions. Kitware collaborates on a multitude of basic and applied research and development projects. Our collaborators include the top universities from around the world, national research labs, medical device manufacturers, car manufacturers, oil and gas companies, financial institutes, and many others. The projects range from extending our open source C++ libraries and applications, such as VTK, ParaView, and CMake, to developing proprietary domain-specific vertical applications for a wide array of platforms including web and mobile devices. By joining our team you will participate in a dynamic work environment with exceptionally talented and friendly coworkers who are committed to high-quality development practices. You will collaborate with esteemed researchers from around the world by: * Designing and developing scalable data analysis and visualization tools for use by researchers and professionals from various domains; * Solving a wide array of problems ranging from developing distributed memory parallel algorithms for data analysis, optimizing distributed parallel codes to compiling and maintaining software on supercomputers. * Designing and developing tools to improve scientific data analysis workflows; * Contributing to and supporting our dynamic open source communities built around several of our open source tools. -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Fri May 29 11:51:24 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Fri, 29 May 2015 15:51:24 +0000 Subject: [Paraview-developers] add property dynamicaly to a reader In-Reply-To: <5565770B.1080906@ec-nantes.fr> References: <55521BCD.50704@ec-nantes.fr> <5565770B.1080906@ec-nantes.fr> Message-ID: Felipe, Adding properties dynamically to filters, I am afraid, is not supported. Utkarsh On Wed, May 27, 2015 at 3:52 AM Felipe Bordeu wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Any insight, on who to add a property to my reader (c++) so it is visible > in the animation View, (comparative View) at run time??? > > > > Le 12/05/2015 17:27, Felipe Bordeu a ?crit : > > > > hi, > > > > I have custom reader for multidimensional data (4D-5D...). Normally I > > associate 3 dimensions to the X-Y-Z of the 3D view, and one dimension to > > time, and fix all the rest. This way I can visualise a 4Dimensional > > slice of my NDimensional data. With this a can animate the slice using > > the time of paraview. but now I want to animate the others dimensions... > > The problem is that the names and the number of dimension is file > > dependent. So my question is, Can I dynamically (and how ) add > > properties to the filters so Paraview will show it in the Animation View > > (comparative view) ??? (using latest git version, c++). > > > > > > Thanks > > > > > > > > _______________________________________________ > > Powered by www.kitware.com > > > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > > > Follow this link to subscribe/unsubscribe: > > http://public.kitware.com/mailman/listinfo/paraview-developers > > - -- > Felipe Bordeu Weldt > Ing?nieur de Recherche > - ------------------------------------- > T?l. : 33 (0)2 40 37 16 57 > Fax. : 33 (0)2 40 74 74 06 > Felipe.Bordeu at ec-nantes.fr > Institut GeM - UMR CNRS 6183 > ?cole Centrale Nantes > 1 Rue de La No?, 44321 Nantes, FRANCE > - ------------------------------------- > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.22 (GNU/Linux) > > iQEcBAEBAgAGBQJVZXcLAAoJEE/fMfNgU9/Dl/0IAMgNKAjqtxNX3PwmcyiGa9r7 > AABYQIKgcP+daTAcDdvq8E7bHH1ePUmkju3NAMtZ4YD9ikQY+znFel0RzgKLrujQ > 9h2QrfHqQ2/FugP+r/QD7poFHZcNtzIGeJKLj8WwuQNpq9mU6vY2O6TW7i578mxC > 7I9HnFDhVLpg7ZS61vmb+bnhEhAvmRM8vgoEFKQ3lJPQGvOh5F3Hcn17P/yM8zrQ > 2BN0lPote1AXmrKYVakeZSyecel4N6EGcbN3h+t7fNMc+4EzBysABoaVhRYF1R3o > yN6+g04xHc9fcqjsR6eKypGNyz5YdgEpbSQ7hJRQJFOh2HDQoUYI0TKljSmza28= > =f9jH > -----END PGP SIGNATURE----- > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Fri May 29 15:30:46 2015 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Fri, 29 May 2015 19:30:46 +0000 Subject: [Paraview-developers] Remote rendering requirement of account privilege? In-Reply-To: <000601d09505$c68403e0$538c0ba0$@imech.ac.cn> References: <000001d08695$3ac8c670$b05a5350$@imech.ac.cn> <000501d09367$6265aed0$27310c70$@imech.ac.cn> <000601d09505$c68403e0$538c0ba0$@imech.ac.cn> Message-ID: Great! Thanks for reporting back. Utkarsh On Fri, May 22, 2015 at 11:09 PM Di Cheng wrote: > Utkarsh > > I think I just figured out what is the problem. According to the "ps > aux|grep X" command, the Xserver is started. But the Ubuntu OS is a desktop > OS. There is a bug/feature that the ~/.Xauthority file does not contain > necessary magic cookie to connect the xserver. So here is a solution: > $ sudo xauth -i list #check if there is xserver :0 authentication > information > $ sudo xauth merge > > And the location of authority file can be found using "ps aux|grep X" > A little problem is the ~/.Xauthority becomes owned by "root". So chown > and chgrp should be called to change the owner and group > > Then "xhost +local:" can be called > $ > -----Original Message----- > From: Utkarsh Ayachit [mailto:utkarsh.ayachit at kitware.com] > Sent: Thursday, May 21, 2015 11:37 PM > To: Di Cheng > Cc: ParaView Developers > Subject: Re: [Paraview-developers] Remote rendering requirement of account > privilege? > > Di, > > Try running "xhost +" with sudo. > > > > Utkarsh > > On Wed, May 20, 2015 at 9:42 PM, Di Cheng wrote: > > Utkarsh > > > > Thanks for your reply. > > I tried to use "xhost +", but did not succeed. I also tried to " export > XAUTHORITY=~/.Xauthority ", it did not work either. > > > > here is some detail of my system. > > ---------------------------------------------------------------------- > > --------------------------------------------- > > catdog at wei-H8QG6:~$ export DISPLAY=:0.0 catdog at wei-H8QG6:~$ xhost + No > > protocol specified No protocol specified > > xhost: unable to open display ":0.0" > > catdog at wei-H8QG6:~$ ps aux|grep X > > catdog 15983 0.0 0.0 13588 920 pts/12 S+ 23:34 0:00 grep > --color=auto X > > root 31779 0.3 0.0 156600 48244 tty7 Ss+ May13 36:32 > /usr/bin/X :0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch > > catdog at wei-H8QG6:~$ uname -a > > Linux wei-H8QG6 3.13.0-46-generic #79~precise1-Ubuntu SMP Tue Mar 10 > > 20:25:33 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux catdog at wei-H8QG6:~$ > > xeyes -display :0.0 No protocol specified No protocol specified > > Error: Can't open display: :0.0 > > catdog at wei-H8QG6:~$ xauth list > > wei-H8QG6/unix:15 MIT-MAGIC-COOKIE-1 > > 936664cd6304286ff79270c271ed3189 > > wei-H8QG6/unix:13 MIT-MAGIC-COOKIE-1 > > b11a44d6fb0786b816c73adf6bb0d361 > > wei-H8QG6/unix:14 MIT-MAGIC-COOKIE-1 > > b11a44d6fb0786b816c73adf6bb0d361 > > wei-H8QG6/unix:11 MIT-MAGIC-COOKIE-1 > > b77e756d05b97bdbade08e384c144a73 > > ---------------------------------------------------------------------- > > --------------------------------------------- > > > > -----Original Message----- > > From: Utkarsh Ayachit [mailto:utkarsh.ayachit at kitware.com] > > Sent: Wednesday, May 20, 2015 11:16 PM > > To: Di Cheng > > Cc: ParaView Developers > > Subject: Re: [Paraview-developers] Remote rendering requirement of > account privilege? > > > > You may want to check this (and related documentation) out: > > http://www.x.org/archive/X11R6.8.0/doc/xhost.1.html > > > > Utkarsh > > > > On Mon, May 4, 2015 at 2:07 PM, Di Cheng wrote: > >> Hi, All > >> > >> I am running a remote pvserver on the Ubuntu server 12.04, when I was > using old account, it can be run in remote rendering mode with option: > "-display localhost:0". When I login as another user, I cannot. And when I > connect it from windows, it pops up a window with some information to tell > me I cannot do remote rendering. > >> > >> I do not know how remote rendering works, but it seems it requires some > account privileges. How can I solve this problem? I have compared those two > account, new account belongs to more groups. What can I do to deal with > this problem? Using sudo? > >> > >> Di CHENG (Ph.D. candidate) > >> Supersonic Combustion Group > >> State Key Laboratory of High Temperature Gas Dynamics Institute of > >> Mechanics, Chinese Academy of Sciences > >> ADDRESS: No.15 Beisihuanxi Road, Beijing (100190) P. R. China > >> E-mail: chengdi at imech.ac.cn > >> Phone: +86-10-82544053 > >> Fax: +86-10-82544034 > >> > >> ?? ??? > >> ???????? > >> ?????????????? > >> ?????????? > >> ??????????????15? > >> ???100190 > >> ?????chengdi at imech.ac.cn > >> ???+86-10-82544053 > >> ???+86-10-82544034 > >> > >> > >> > >> _______________________________________________ > >> Powered by www.kitware.com > >> > >> Visit other Kitware open-source projects at > >> http://www.kitware.com/opensource/opensource.html > >> > >> Search the list archives at: > >> http://markmail.org/search/?q=Paraview-developers > >> > >> Follow this link to subscribe/unsubscribe: > >> http://public.kitware.com/mailman/listinfo/paraview-developers > > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wascott at sandia.gov Wed May 27 12:25:15 2015 From: wascott at sandia.gov (Scott, W Alan) Date: Wed, 27 May 2015 16:25:15 -0000 Subject: [Paraview-developers] Coloring by block, Message-ID: Pat on the back to the team. Here is feedback from a user concerning our new coloring by block functionality, still in Master. I am attaching a screenshot. Nice job Utkarsh and Kitware. Alan ..... I hadn't seen that, but that is an immense improvement over the default gray. I don't have a CEE account, but I can wait for it -- no immediate needs. Kevin .... From: Scott, W Alan Not sure if I shared this with you. Here is currently what the new color by block code will look like (in the next release of ParaView). It will be the default for ParaView, for datasets with multiple blocks. Alan -------------- next part -------------- A non-text attachment was scrubbed... Name: discreteColors.jpg Type: image/jpeg Size: 712317 bytes Desc: discreteColors.jpg URL: