Your FieldDataDomain has the same name as the ArrayListDomain, and hence the error. Also, the attribute_type and input_domain_name attributes are not used on FieldDataDomain (look at Servers/ServerManager/Resources/filter.xml for examples). Also I am not sure you are using the "input_domain_name" attribute on ArrayListDomain correctly. Are you trying to refer to the double vector property named "IntegrationTime" by any chance? input_domain_name can only be used to refer to the name of a domain on the "Input" property and it must be of the type InputArrayDomain.
Utkarsh On Fri, Sep 25, 2009 at 12:58 PM, Fred Fred <[email protected]> wrote: > Yes. > The problem is I would like to define the domain as those of a point data > array and probably I missed something because I get another error in this > situation: > > Warning: In > /usr/local/ParaView-3.6.1/Servers/ServerManager/vtkSMProperty.cxx, line 131 > vtkSMStringVectorProperty (0x20d54da0): Domain array_list already exists. > Replacing > > My code is here: > > <StringVectorProperty name="SelectIntegrationTimeArray" > command="SetIntegrationTimeArray" number_of_elements="1" element_types="2" > animateable="0" label="Vectors"> > <ArrayListDomain name="array_list" attribute_type="Scalars" > input_domain_name="IntegrationTime"> > <RequiredProperties> > <Property name="Input" function="ArraySelection"/> > </RequiredProperties> > </ArrayListDomain> > <FieldDataDomain name="array_list" attribute_type="Scalars" > input_domain_name="IntegrationTime"> > <RequiredProperties> > <Property name="Input" function="Input"/> > </RequiredProperties> > </FieldDataDomain> > <Documentation> > This property contains the name of the scalar array from which to > obtain integration times. > </Documentation> > </StringVectorProperty> > > <DoubleVectorProperty name="IntegrationTime" label="Integration Time" > command="SetIntegrationTime" number_of_elements="1" default_values="0"> > <ArrayRangeDomain name="scalar_range"> > <RequiredProperties> > <Property name="Input" function="Input"/> > <Property name="SelectInputScalars" function="ArraySelection"/> > </RequiredProperties> > </ArrayRangeDomain> > <Documentation> > The value of this property specifies the current integration time. > </Documentation> > </DoubleVectorProperty> > > >> Date: Fri, 25 Sep 2009 12:53:30 -0400 >> Subject: Re: [Paraview] Cue does not have domain or property set! >> From: [email protected] >> To: [email protected] >> CC: [email protected] >> >> Are you trying to create an animation for a property without any domain? >> >> Utkarsh >> >> On Fri, Sep 25, 2009 at 12:43 PM, Fred Fred <[email protected]> wrote: >> > What is exactly the source of this problem? >> > vtkSMRampKeyFrameProxy (0x1fd761e0): Cue does not have domain or >> > property >> > set! >> > Which item is lacking in my .xml? >> > >> > >> > ________________________________ >> > Souhaitez vous « être au bureau sans y être » ? Oui je le veux ! >> > _______________________________________________ >> > Powered by www.kitware.com >> > >> > Visit other Kitware open-source projects at >> > http://www.kitware.com/opensource/opensource.html >> > >> > Please keep messages on-topic and check the ParaView Wiki at: >> > http://paraview.org/Wiki/ParaView >> > >> > Follow this link to subscribe/unsubscribe: >> > http://www.paraview.org/mailman/listinfo/paraview >> > >> > > > ________________________________ > Découvrez toutes les possibilités de communication avec vos proches _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Follow this link to subscribe/unsubscribe: http://www.paraview.org/mailman/listinfo/paraview
