Shows how to make clouds in 1D, 2D and 3D using Jaida
Code: "jaida_CloudCreate.java". Programming language: Java
DMelt Version 1. Last modified: 12/30/2015. License: Pro
https://datamelt.org/code/cache/jaida_CloudCreate_4138.java
To run this script using the DMelt IDE,
copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.
import hep.aida.*;
public class jaida_CloudCreate
{
public static void main(String[] argv)
{
IAnalysisFactory af = IAnalysisFactory.create();
ITree tree = af.createTreeFactory().create();
IHistogramFactory hf = af.createHistogramFactory(tree);
ICloud1D cl1D = hf.createCloud1D( "cl1D" );
ICloud2D cl2D = hf.createCloud2D( "cl2D", "2-Dimensional Cloud" );
ICloud3D cl3D = hf.createCloud3D( "cl3D", "3-Dimensional Cloud", 1500, "autoConvert = false" );
}
}
You see the box below because you did not login.