File tree 3 files changed +12
-13
lines changed
arich/dataobjects/include
3 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ namespace Belle2 {
24
24
public:
25
25
26
26
// ! Default constructor for ROOT IO.
27
- ARICHThParam () : m_index(- 1 ), m_dth(- 1 ), m_th0( 0 ), m_nth( 0 )
27
+ ARICHThParam ()
28
28
{
29
29
/* ! does nothing */
30
30
}
@@ -87,11 +87,11 @@ namespace Belle2 {
87
87
88
88
private:
89
89
90
- int m_index ; /* *< index */
91
- double m_dth ; /* *< dth */
92
- double m_th0 ; /* *< th0 */
93
- int m_nth; /* *< nth */
94
- ClassDef (ARICHThParam, 1 ); /* *< the class title */
90
+ double m_dth = - 1 ; /* *< dth */
91
+ double m_th0 = 0 ; /* *< th0 */
92
+ int m_index = - 1 ; /* *< index */
93
+ int m_nth = 0 ; /* *< nth */
94
+ ClassDef (ARICHThParam, 2 ); /* *< the class title */
95
95
96
96
};
97
97
Original file line number Diff line number Diff line change @@ -189,6 +189,8 @@ namespace Belle2 {
189
189
190
190
private:
191
191
192
+ std::vector<ARICHPhoton> m_photons; /* *< collection of ARICHPhotons associated with the track */
193
+
192
194
float m_x = 0 ; /* *< Reconstructed position. */
193
195
float m_y = 0 ; /* *< Reconstructed position. */
194
196
float m_z = 0 ; /* *< Reconstructed position. */
@@ -197,14 +199,11 @@ namespace Belle2 {
197
199
float m_dz = 0 ; /* *< Reconstructed direction. */
198
200
float m_momentum; /* *< Reconstructed momentum. */
199
201
200
- bool m_hitWin = 0 ; /* *< true if track hits HAPD window */
201
202
float m_winX = 0 ; /* *< x position of track extrapolated to HAPD plane */
202
203
float m_winY = 0 ; /* *< y position of track extrapolated to HAPD plane */
204
+ bool m_hitWin = 0 ; /* *< true if track hits HAPD window */
203
205
204
-
205
- std::vector<ARICHPhoton> m_photons; /* *< collection of ARICHPhotons associated with the track */
206
-
207
- ClassDef (ARICHTrack, 2 ); /* *< the class title */
206
+ ClassDef (ARICHTrack, 3 ); /* *< the class title */
208
207
209
208
};
210
209
} // namespace Belle2
Original file line number Diff line number Diff line change 9
9
#pragma link C++ class Belle2::ARICHAeroHit+; // checksum=0x26572235, version=1
10
10
#pragma link C++ class Belle2::ARICHDigit+; // checksum=0x3f0da20d, version=3
11
11
#pragma link C++ class Belle2::ARICHLikelihood+; // checksum=0x1b86e8b5, version=3
12
- #pragma link C++ class Belle2::ARICHTrack+; // checksum=0xe97461b5 , version=2
12
+ #pragma link C++ class Belle2::ARICHTrack+; // checksum=0xa0de41fd , version=3
13
13
#pragma link C++ class Belle2::ARICHHit+; // checksum=0xbd5a7d82, version=1
14
14
#pragma link C++ class Belle2::ARICHPhoton+; // checksum=0xf6217c88, version=5
15
15
#pragma link C++ class Belle2::ARICHRawDigit+; // checksum=0xbb397841, version=2
16
- #pragma link C++ class Belle2::ARICHThParam+; // checksum=0x3db70df8 , version=1
16
+ #pragma link C++ class Belle2::ARICHThParam+; // checksum=0x8f5562d0 , version=2
17
17
#pragma link C++ class Belle2::ARICHInfo+; // checksum=0x862f1d7c, version=4
18
18
19
19
#endif
You can’t perform that action at this time.
0 commit comments