vtk_equivalence
            
            Usage         
vtk_equivalence logicalName physicalPath
Description   
This procedure is used only in the equiv.tcl file of a project. The procedure has several functions:
1. Define an equivalence between a logical name and a physical name.
Example 
vtk_equivalence TOP /projects/ram
vtk_equivalence TOP /remote/export/projects/ram
2. Control the capitalization of path names. In this case, the procedure needs one argument which is 
either -nocase or -case. With -nocase, all path names are canonicalized to lower case. 
This is useful if the VOV server is running on a Windows machine.
Example
vtk_equivalence  -nocase; # If server runs on Windows
3. This can also be used to control whether AFS paths should be normalized or not. 
Use option -afs to normalize (e.g. /.automount/hostname/xxx becomes /net/hostname/xxx) and option -noafs to leave those paths alone (the default).
Example
vtk_equivalence  -afs; # Normalize AFS paths.
Side Effects
1. The environment variable corresponding to the logical name is set, if it does not exist already. 
2. The Tcl global variable corresponding to the logical name is set to the value of the environment variable.