R3BROOT
R3B analysis software
Loading...
Searching...
No Matches
NeulandSimCalData.h
Go to the documentation of this file.
1#pragma once
2
3#include "TObject.h"
4namespace R3B::Neuland
5{
6 struct SimCalData : public TObject
7 {
8 int bar_module{}; // ns
9 double let_l{}; // ns
10 double let_r{}; // ns
11 double tot_l{}; // ns
12 double tot_r{}; // ns
13 SimCalData() = default;
14 SimCalData(Int_t paddleid, double totL, double totR, double tleL, double tleR)
15 : bar_module{ paddleid }
16 , let_l{ tleL }
17 , let_r{ tleR }
18 , tot_l{ totL }
19 , tot_r{ totR }
20 {
21 }
23 };
24} // namespace R3B::Neuland
Simulation of NeuLAND Bar/Paddle.
SimCalData(Int_t paddleid, double totL, double totR, double tleL, double tleR)
ClassDefNV(SimCalData, 2)