StRoot
1
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Groups
Pages
StTriggerUtilities
StTriggerThreshold.h
1
// -*- mode:c++ -*-
2
3
#ifndef StTriggerThreshold_h
4
#define StTriggerThreshold_h
5
6
#include <cstdio>
7
#include "TObject.h"
8
#include "TString.h"
9
10
struct
StTriggerThreshold
:
public
TObject {
11
Int_t object;
// crate
12
Int_t index;
// board
13
Int_t reg;
// register number
14
TString label;
// register label
15
Int_t value;
// register value
16
Int_t defaultvalue;
// register default value
17
18
void
print();
19
20
ClassDef(
StTriggerThreshold
,1)
21
};
22
23
inline
void
StTriggerThreshold::print()
24
{
25
printf(
"object=%d index=%d reg=%d label=%s value=%d defaultvalue=%d\n"
,
26
object
,index,reg,label.Data(),value,defaultvalue);
27
}
28
29
#endif // StTriggerThreshold_h
StTriggerThreshold
Definition:
StTriggerThreshold.h:10
Generated by
1.8.5