All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class hep.analysis.HistogramFolder

java.lang.Object
   |
   +----hep.analysis.Folder
           |
           +----hep.analysis.HistogramFolder

public class HistogramFolder
extends Folder
Use this class to organize Histogram objects into folders. To store a Histogram in a folder, pass a folder to the Histogram constructor. Folders can be stored in other folders. Simply pass to the HistogramFolder constructor the parent HistogramFolder.

See Also:
Histogram

Constructor Index

 o HistogramFolder(String)
Creates a new folder in which you can store histograms and other histogram folders.
 o HistogramFolder(String, HistogramFolder)
Creates a new folder in which you can store histograms and other histogram folders, and stores the new folder in another folder.

Method Index

 o getDefaultFolder()
 o setDefaultFolder(HistogramFolder)
 o setDefaultFolder(String)

Constructors

 o HistogramFolder
 public HistogramFolder(String name)
Creates a new folder in which you can store histograms and other histogram folders.

Parameters:
name - the name for the folder. If a folder with the same name already exists, this object will operate on the same folder (i.e., there won't be two with the same name).
 o HistogramFolder
 public HistogramFolder(String name,
                        HistogramFolder parent)
Creates a new folder in which you can store histograms and other histogram folders, and stores the new folder in another folder.

Parameters:
name - the name for the folder. If a folder with the same name already exists, this object will operate on the same folder (i.e., there won't be two with the same name).
parent - the folder to store the new folder in

Methods

 o getDefaultFolder
 public static HistogramFolder getDefaultFolder()
 o setDefaultFolder
 public static void setDefaultFolder(HistogramFolder f)
 o setDefaultFolder
 public static void setDefaultFolder(String path)

All Packages  Class Hierarchy  This Package  Previous  Next  Index