StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
daqFileTag.h
1 /* daqFileTag.h
2 *
3 * Table: daqFileTag
4 *
5 * description: // Daq input to FileList
6 */
7 
8 #ifndef __daqFileTag__H
9 #define __daqFileTag__H
10 
11 struct daqFileTag {
12 
13  unsigned int run; /* unique run number */
14  unsigned int beginEvent; /* 1st event number in file */
15  unsigned int endEvent; /* last event number in file */
16  unsigned int numberOfEvents; /* total number of events */
17  unsigned int fileSequence; /* sequence part of filename */
18  char file[256]; /* unique file name without (hpss) path */
19  unsigned int hpss; /* is the data at hpss? */
20 
21  unsigned int fileStream; /* new for version 10.0, stream part of filename */
22 
23  // New 2/18/09
24  int isCombo; // is this file combined in another
25  char comboFile[256]; // filename for comboFile
26 
27 };
28 #endif