All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class hep.analysis.CutFolder

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

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

See Also:
Cut

Constructor Index

 o CutFolder(String)
Creates a new folder in which you can store cuts and other cut folders.
 o CutFolder(String, CutFolder)
Creates a new folder in which you can store cuts and other cut folders, and stores the new folder in another folder.

Constructors

 o CutFolder
 public CutFolder(String name)
Creates a new folder in which you can store cuts and other cut 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 CutFolder
 public CutFolder(String name,
                  CutFolder parent)
Creates a new folder in which you can store cuts and other cut 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

All Packages  Class Hierarchy  This Package  Previous  Next  Index