wavecatcher-analysis
Loading...
Searching...
No Matches
CosmicsBox.h
Go to the documentation of this file.
1
2#ifndef _CosmicsBox
3#define _CosmicsBox
4
5#include "ReadRun.h"
6
7class CosmicsBox : public ReadRun {
8public:
11 CosmicsBox(int no_of_bin_files_to_read) : ReadRun(no_of_bin_files_to_read) {}
12
13 void Print_Phi_ew(vector<int>, vector<float>, vector<int>, float = 1, float = 1, float = 100, float = 140, int = 400, bool = true, bool = false);
14};
15#endif
Functions specific for the cosmics box, a liquid scintillator prototype read out with a SiPM array co...
Definition CosmicsBox.h:7
void Print_Phi_ew(vector< int >, vector< float >, vector< int >, float=1, float=1, float=100, float=140, int=400, bool=true, bool=false)
Angular distribution of passing particles in the cosmics setup.
Definition CosmicsBox.cc:25
CosmicsBox(int no_of_bin_files_to_read)
Initializer will call initializer of ReadRun class.
Definition CosmicsBox.h:11