Difference between revisions of "Adding models to catalogued volumes"

From Dynamo
Jump to navigation Jump to search
(Created page with "A file representing a model created on a catalogued tomogram will be stored in a predefined position. For instance, a model named {{t|someModel}} created by ''Dynamo'' in one...")
(No difference)

Revision as of 11:31, 27 April 2016

A file representing a model created on a catalogued tomogram will be stored in a predefined position. For instance, a model named someModel created by Dynamo in one of its catalogue-based tomogram viewers for the volume indexed as 2 in a catalogue named my Catalogue will be automatically stored in the position: myCatalogue /volume_2/models/someModel.omd

Now, if you have produced a model object myModel independently of the catalogue system, and want to embed it and assign it to a catalogued tomogram, you might have the temptation of just saving it as dwrite(myModel,'myCatalogue /volume_2/models/myModel.omd'). While this will work for many functionalities, this is not totally correct, as the catalogue needs to preserve some internal links.

  1. Assign the model with a Dynamo command
    dcm -c myCatalogue -l 2 -am myModel.omd
    for models contained in a file
    dcm('-c', 'myCatalogue', '-l', 2 ,'-am', m
    if the model is contained is an workspace object m
  2. Alternatively, you can tell the catalogue to relink all the files found in the models folder of one or more volumes.
    dcm -c myCatalogue --relinkAllModelFiles
    XX: not yet implemented!


Technical information The link between a model and its 'volume' entry happens over the property cvolume in the model object. If you want to imitate manually the action of the flag am, you just need to extract the corresponding 'cvolume' object of the catalogue and assign it to the 'cvolume' property of the model before saving it.