public class Demo extends java.lang.Object implements IEvioListener
| Constructor and Description |
|---|
Demo() |
| Modifier and Type | Method and Description |
|---|---|
void |
endEventParse(BaseStructure evioEvent)
Done parsing a new evio structure.
|
void |
gotStructure(BaseStructure evioEvent,
IEvioStructure structure)
This IEvioListener has received a structure as the result of an event being parsed.
|
static void |
main(java.lang.String[] args) |
static void |
main2(java.lang.String[] args)
Main program for testing
|
void |
startEventParse(BaseStructure evioEvent)
Starting to parse a new evio structure.
|
public static void main(java.lang.String[] args)
public static void main2(java.lang.String[] args)
args - the command line arguments.public void startEventParse(BaseStructure evioEvent)
IEvioListenerstartEventParse in interface IEvioListenerevioEvent - the evio structure in question.public void endEventParse(BaseStructure evioEvent)
IEvioListenerendEventParse in interface IEvioListenerevioEvent - the evio structure in question.public void gotStructure(BaseStructure evioEvent, IEvioStructure structure)
gotStructure in interface IEvioListenerevioEvent - the event being parsed.structure - the structure that I received. It is a BANK, SEGEMENT
or TAGSEGMENT.