CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Public Attributes
TB06RecoH2 Class Reference

#include <TB06RecoH2.h>

Inheritance diagram for TB06RecoH2:

Public Member Functions

void reset ()
 set all the values to 0 More...
 

Public Attributes

Float_t beamEnergy
 energy of the beam More...
 
Float_t BH1_
 
Float_t BH2_
 
Float_t BH3_
 
Float_t BH4_
 
Float_t CK1_
 
Float_t CK2_
 
Float_t CK3_
 
Float_t convFactor
 conversion factor from ADC to GeV used More...
 
Int_t event
 event number More...
 
Float_t localMap [7][7]
 energy in 7x7 xtals around the most energetic one More...
 
Float_t MEXTLenergy
 most energetic crystal energy More...
 
Int_t MEXTLeta
 most energetic crystal eta More...
 
Int_t MEXTLindex
 most energetic crystal index More...
 
Int_t MEXTLphi
 most energetic crystal phi More...
 
Int_t run
 run number More...
 
Float_t S1adc_
 
Float_t S1uncalib_
 
Float_t S25uncalib_
 
Float_t S2adc_
 
Float_t S3adc_
 
Float_t S49uncalib_
 
Float_t S4adc_
 
Float_t S521_
 
Float_t S528_
 
Int_t S6ADC
 ADC output of the S6 integrated signal. More...
 
Float_t S9uncalib_
 
Int_t tableIsMoving
 if the table is moving More...
 
Float_t TOF1J_
 
Float_t TOF1S_
 
Float_t TOF2J_
 
Float_t TOF2S_
 
Float_t VM1_
 
Float_t VM2_
 
Float_t VM3_
 
Float_t VM4_
 
Float_t VM5_
 
Float_t VM6_
 
Float_t VM7_
 
Float_t VM8_
 
Float_t VMB_
 
Float_t VMF_
 
int wcAXo_
 
int wcAYo_
 
int wcBXo_
 
int wcBYo_
 
int wcCXo_
 
int wcCYo_
 
Float_t xECAL
 ECAL x coord (eta) More...
 
Float_t xHodo
 hodoscope x coord (eta) More...
 
Float_t xQualityHodo
 hodoscope x quality (eta) More...
 
Float_t xSlopeHodo
 hodoscope x slope (eta) More...
 
float xwA_
 
float xwB_
 
float xwC_
 
Float_t yECAL
 ECAL y coord (phi) More...
 
Float_t yHodo
 hodoscope y coord (phi) More...
 
Float_t yQualityHodo
 hodoscope y quality (eta) More...
 
Float_t ySlopeHodo
 hodoscope y slope (eta) More...
 
float ywA_
 
float ywB_
 
float ywC_
 
Float_t zECAL
 ECAL z coord (phi) More...
 
Float_t zHodo
 hodoscope z coord (phi) More...
 

Detailed Description

compact reco dataset for ECAL TB 2006 data

Date:
2007/02/02 12:16:26
Revision:
1.1
Id:
TB06RecoH2.h,v 1.1 2007/02/02 12:16:26 delre Exp
Author
Author:
delre

Definition at line 14 of file TB06RecoH2.h.

Member Function Documentation

void TB06RecoH2::reset ( void  )

set all the values to 0

Definition at line 12 of file TB06RecoH2.cc.

References beamEnergy, BH1_, BH2_, BH3_, BH4_, CK1_, CK2_, CK3_, convFactor, eta(), localMap, MEXTLenergy, MEXTLeta, MEXTLindex, MEXTLphi, phi, run, S1adc_, S1uncalib_, S25uncalib_, S2adc_, S3adc_, S49uncalib_, S4adc_, S6ADC, S9uncalib_, tableIsMoving, TOF1J_, TOF1S_, TOF2J_, TOF2S_, VM1_, VM2_, VM3_, VM4_, VM5_, VM6_, VM7_, VM8_, VMB_, VMF_, wcAXo_, wcAYo_, wcBXo_, wcBYo_, wcCXo_, wcCYo_, xECAL, xHodo, xQualityHodo, xSlopeHodo, xwA_, xwB_, xwC_, yECAL, yHodo, yQualityHodo, ySlopeHodo, ywA_, ywB_, ywC_, zECAL, and zHodo.

Referenced by MatrixReader.MatrixReader::__init__(), MatrixReader.MatrixReader::showRaw(), and TB06TreeH2::store().

13 {
14  run = 0 ;
15  event = 0 ;
16  tableIsMoving = 0 ;
17  S6ADC = 0 ;
18 
19  MEXTLindex = 0 ;
20  MEXTLeta = 0 ;
21  MEXTLphi = 0 ;
22  MEXTLenergy = 0. ;
23  beamEnergy = 0. ;
24 
25  for (int eta = 0 ; eta<7 ; ++eta)
26  for (int phi = 0 ; phi<7 ; ++phi)
27  localMap[eta][phi] = 0. ;
28 
29  S1uncalib_ = 0.;
30  S25uncalib_ = 0.;
31  S9uncalib_ = 0.;
32  S49uncalib_ = 0.;
33 
34  xECAL = 0. ;
35  yECAL = 0. ;
36  zECAL = 0. ;
37  xHodo = 0. ;
38  yHodo = 0. ;
39  zHodo = 0. ;
40  xSlopeHodo = 0. ;
41  ySlopeHodo = 0. ;
42  xQualityHodo = 0. ;
43  yQualityHodo = 0. ;
44  wcAXo_ = 0;
45  wcAYo_ = 0;
46  wcBXo_ = 0;
47  wcBYo_ = 0;
48  wcCXo_ = 0;
49  wcCYo_ = 0;
50  xwA_ = -999.;
51  ywA_ = -999.;
52  xwB_ = -999.;
53  ywB_ = -999.;
54  xwC_ = -999.;
55  ywC_ = -999.;
56  S1adc_ = 0.;
57  S2adc_ = 0.;
58  S3adc_ = 0.;
59  S4adc_ = 0.;
60  VM1_ = 0.;
61  VM2_ = 0.;
62  VM3_ = 0.;
63  VM4_ = 0.;
64  VM5_ = 0.;
65  VM6_ = 0.;
66  VM7_ = 0.;
67  VM8_ = 0.;
68  VMF_ = 0.;
69  VMB_ = 0.;
70  CK1_ = 0.;
71  CK2_ = 0.;
72  CK3_ = 0.;
73  BH1_ = 0.;
74  BH2_ = 0.;
75  BH3_ = 0.;
76  BH4_ = 0.;
77  TOF1S_ = -999.;
78  TOF1J_ = -999.;
79  TOF2S_ = -999.;
80  TOF2J_ = -999.;
81 
82  convFactor = 0. ;
83 }
Float_t TOF1S_
Definition: TB06RecoH2.h:109
float ywA_
Definition: TB06RecoH2.h:76
Float_t CK1_
Definition: TB06RecoH2.h:100
Float_t S1adc_
Definition: TB06RecoH2.h:81
int wcBXo_
Definition: TB06RecoH2.h:71
float ywB_
Definition: TB06RecoH2.h:78
Float_t TOF2S_
Definition: TB06RecoH2.h:110
Float_t BH2_
Definition: TB06RecoH2.h:105
float ywC_
Definition: TB06RecoH2.h:80
Float_t S9uncalib_
Definition: TB06RecoH2.h:67
int wcCYo_
Definition: TB06RecoH2.h:74
Float_t TOF1J_
Definition: TB06RecoH2.h:111
int wcCXo_
Definition: TB06RecoH2.h:73
Float_t xSlopeHodo
hodoscope x slope (eta)
Definition: TB06RecoH2.h:54
Int_t S6ADC
ADC output of the S6 integrated signal.
Definition: TB06RecoH2.h:25
Float_t yHodo
hodoscope y coord (phi)
Definition: TB06RecoH2.h:50
T eta() const
Float_t xHodo
hodoscope x coord (eta)
Definition: TB06RecoH2.h:48
Int_t MEXTLeta
most energetic crystal eta
Definition: TB06RecoH2.h:30
Float_t S3adc_
Definition: TB06RecoH2.h:83
Int_t tableIsMoving
if the table is moving
Definition: TB06RecoH2.h:23
Float_t VM8_
Definition: TB06RecoH2.h:95
Float_t S4adc_
Definition: TB06RecoH2.h:84
float xwC_
Definition: TB06RecoH2.h:79
Float_t VM3_
Definition: TB06RecoH2.h:90
Float_t MEXTLenergy
most energetic crystal energy
Definition: TB06RecoH2.h:34
float xwB_
Definition: TB06RecoH2.h:77
Float_t ySlopeHodo
hodoscope y slope (eta)
Definition: TB06RecoH2.h:56
int wcAXo_
Definition: TB06RecoH2.h:69
Float_t VM5_
Definition: TB06RecoH2.h:92
float xwA_
Definition: TB06RecoH2.h:75
Float_t S49uncalib_
Definition: TB06RecoH2.h:66
Float_t CK2_
Definition: TB06RecoH2.h:101
Float_t S2adc_
Definition: TB06RecoH2.h:82
Float_t S1uncalib_
Definition: TB06RecoH2.h:64
Float_t S25uncalib_
Definition: TB06RecoH2.h:65
Float_t yECAL
ECAL y coord (phi)
Definition: TB06RecoH2.h:44
Float_t zECAL
ECAL z coord (phi)
Definition: TB06RecoH2.h:46
Float_t VM7_
Definition: TB06RecoH2.h:94
Float_t VMF_
Definition: TB06RecoH2.h:96
Int_t MEXTLphi
most energetic crystal phi
Definition: TB06RecoH2.h:32
Float_t VM4_
Definition: TB06RecoH2.h:91
Float_t VMB_
Definition: TB06RecoH2.h:97
Float_t convFactor
conversion factor from ADC to GeV used
Definition: TB06RecoH2.h:115
Float_t BH1_
Definition: TB06RecoH2.h:104
Float_t BH3_
Definition: TB06RecoH2.h:106
Float_t VM2_
Definition: TB06RecoH2.h:89
Float_t yQualityHodo
hodoscope y quality (eta)
Definition: TB06RecoH2.h:60
Int_t run
run number
Definition: TB06RecoH2.h:19
Float_t xQualityHodo
hodoscope x quality (eta)
Definition: TB06RecoH2.h:58
int wcAYo_
Definition: TB06RecoH2.h:70
Float_t CK3_
Definition: TB06RecoH2.h:102
Float_t VM6_
Definition: TB06RecoH2.h:93
Float_t zHodo
hodoscope z coord (phi)
Definition: TB06RecoH2.h:52
Float_t BH4_
Definition: TB06RecoH2.h:107
Float_t VM1_
Definition: TB06RecoH2.h:88
Int_t MEXTLindex
most energetic crystal index
Definition: TB06RecoH2.h:28
Float_t localMap[7][7]
energy in 7x7 xtals around the most energetic one
Definition: TB06RecoH2.h:39
Float_t xECAL
ECAL x coord (eta)
Definition: TB06RecoH2.h:42
int wcBYo_
Definition: TB06RecoH2.h:72
Float_t TOF2J_
Definition: TB06RecoH2.h:112
Float_t beamEnergy
energy of the beam
Definition: TB06RecoH2.h:36
Definition: DDAxes.h:10

Member Data Documentation

Float_t TB06RecoH2::beamEnergy

energy of the beam

Definition at line 36 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::BH1_

Definition at line 104 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::BH2_

Definition at line 105 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::BH3_

Definition at line 106 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::BH4_

Definition at line 107 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::CK1_

Definition at line 100 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::CK2_

Definition at line 101 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::CK3_

Definition at line 102 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::convFactor

conversion factor from ADC to GeV used

Definition at line 115 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

Int_t TB06RecoH2::event

event number

Definition at line 21 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), Types.EventID::cppID(), and TB06TreeH2::store().

Float_t TB06RecoH2::localMap[7][7]

energy in 7x7 xtals around the most energetic one

Definition at line 39 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::MEXTLenergy

most energetic crystal energy

Definition at line 34 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

Int_t TB06RecoH2::MEXTLeta

most energetic crystal eta

Definition at line 30 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

Int_t TB06RecoH2::MEXTLindex

most energetic crystal index

Definition at line 28 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Int_t TB06RecoH2::MEXTLphi

most energetic crystal phi

Definition at line 32 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

Int_t TB06RecoH2::run
Float_t TB06RecoH2::S1adc_

Definition at line 81 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::S1uncalib_

Definition at line 64 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::S25uncalib_

Definition at line 65 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::S2adc_

Definition at line 82 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::S3adc_

Definition at line 83 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::S49uncalib_

Definition at line 66 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::S4adc_

Definition at line 84 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::S521_

Definition at line 85 of file TB06RecoH2.h.

Float_t TB06RecoH2::S528_

Definition at line 86 of file TB06RecoH2.h.

Int_t TB06RecoH2::S6ADC

ADC output of the S6 integrated signal.

Definition at line 25 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::S9uncalib_

Definition at line 67 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Int_t TB06RecoH2::tableIsMoving

if the table is moving

Definition at line 23 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::TOF1J_

Definition at line 111 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::TOF1S_

Definition at line 109 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::TOF2J_

Definition at line 112 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::TOF2S_

Definition at line 110 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::VM1_

Definition at line 88 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::VM2_

Definition at line 89 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::VM3_

Definition at line 90 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::VM4_

Definition at line 91 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::VM5_

Definition at line 92 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::VM6_

Definition at line 93 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::VM7_

Definition at line 94 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::VM8_

Definition at line 95 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::VMB_

Definition at line 97 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::VMF_

Definition at line 96 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

int TB06RecoH2::wcAXo_

Definition at line 69 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

int TB06RecoH2::wcAYo_

Definition at line 70 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

int TB06RecoH2::wcBXo_

Definition at line 71 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

int TB06RecoH2::wcBYo_

Definition at line 72 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

int TB06RecoH2::wcCXo_

Definition at line 73 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

int TB06RecoH2::wcCYo_

Definition at line 74 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::xECAL

ECAL x coord (eta)

Definition at line 42 of file TB06RecoH2.h.

Referenced by reset().

Float_t TB06RecoH2::xHodo

hodoscope x coord (eta)

Definition at line 48 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::xQualityHodo

hodoscope x quality (eta)

Definition at line 58 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::xSlopeHodo

hodoscope x slope (eta)

Definition at line 54 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

float TB06RecoH2::xwA_

Definition at line 75 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

float TB06RecoH2::xwB_

Definition at line 77 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

float TB06RecoH2::xwC_

Definition at line 79 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::yECAL

ECAL y coord (phi)

Definition at line 44 of file TB06RecoH2.h.

Referenced by reset().

Float_t TB06RecoH2::yHodo

hodoscope y coord (phi)

Definition at line 50 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::yQualityHodo

hodoscope y quality (eta)

Definition at line 60 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::ySlopeHodo

hodoscope y slope (eta)

Definition at line 56 of file TB06RecoH2.h.

Referenced by TB06TreeH2::check(), reset(), and TB06TreeH2::store().

float TB06RecoH2::ywA_

Definition at line 76 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

float TB06RecoH2::ywB_

Definition at line 78 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

float TB06RecoH2::ywC_

Definition at line 80 of file TB06RecoH2.h.

Referenced by reset(), and TB06TreeH2::store().

Float_t TB06RecoH2::zECAL

ECAL z coord (phi)

Definition at line 46 of file TB06RecoH2.h.

Referenced by reset().

Float_t TB06RecoH2::zHodo

hodoscope z coord (phi)

Definition at line 52 of file TB06RecoH2.h.

Referenced by reset().