icemc
Settings.h
Go to the documentation of this file.
1 //class Tools:
4 
5 #ifndef SETTINGS_H_
6 #define SETTINGS_H_
7 
8 #include <fstream>
9 #include <vector>
10 
11 class Anita;
12 class Secondaries;
13 class Signal;
14 class Balloon;
15 class Ray;
16 
17 using std::string;
18 using std::ifstream;
19 using std::ofstream;
20 using std::vector;
21 
22 #include "TString.h"
23 #include <TObject.h>
24 #include <map>
25 
26 // from RVersion.h
27 #if ROOT_VERSION_CODE >= ROOT_VERSION(6,0,0)
28 #include "TClingRuntime.h"
29 #else
30 #include "TCint.h"
31 #endif
32 
34 
35 class Settings : public TObject {
36 
37  /* protected: */
38 
39  public:
40 
41  Settings();
42  ~Settings();
43  void Initialize();
45 
46  void getSetting(const char* key, int& value, bool nonag=false);
47  void getSetting(const char* key, float& value, bool nonag=false);
48  void getSetting(const char* key, double& value, bool nonag=false);
49 
50  void getSetting(const char * key, std::string & value, bool nonag=false);
51  void getSetting(const char* key, vector<int>& valueArray, bool nonag=false);
52  void getSetting(const char* key, vector<float>& valueArray, bool nonag=false);
53  void getSetting(const char* key, vector<double>& valueArray, bool nonag=false);
54 
55  void ReadInputs(const char* fileName , ofstream &foutput,
56  // Anita* anita1, Secondaries* sec1, Signal* sig1, Balloon* bn1, Ray* ray1,
57  int& NNU, double& RANDOMISEPOL);
58 
59  void ApplyInputs(Anita* anita1, Secondaries* sec1, Signal* sig1, Balloon* bn1, Ray* ray1);
60 
61 
65  int WHICH; // which payload to use 0=Anita-lite,1=Ross,2=Smex,3=make your own
67  int CYLINDRICALSYMMETRY; // is it cylindrically symmetric =1 if which=1,2, =0 if which=0
68  // if which=3 then 0 or 1
69  double SIGMA_FACTOR; // factor to multiply cross section by for error analysis
70  int SIGMAPARAM; // 0=Reno, 1=Connolly et al. 2011 for cross section parametrization
71  int YPARAM; // 0=Reno, 1=Connolly et al. 2011 for cross section parametrization
72  int SIGNAL_FLUCT; // 1=add noise fluctuation to signal or 0=do not
73  int TRIGGERSCHEME; // frequency domain voltage, frequency domain energy, time domain diode integration
74  int ZEROSIGNAL; // zero the signal to see how many of our hits are noise hits
75  int REMOVEPOLARIZATION; //Disable polarizations
76 
78  double INCLINE_NADIR;
80  int GAINS;
81  int BANDING;
82  int NBANDS;
83  int PERCENTBW;
84  int trigRequirements[4];// 0th element - L1 - how many channels per antenna should pass
85  // 1st element- L2 - how many antennas on a layer
86  // 2nd element - L3 - how many L2 triggers should be coincident
87  int REQUIRE_CENTRE; // require centre antenna in clump to be one of those hit
88  double INCLUDE_NADIRONLY; // cant angle of nadir (bottom) layer of antennas
89  int PULSER;
90  double SIGMA_THETA; // resolution on the polar angle of the signal
91  double FREQ_LOW;
92  double FREQ_HIGH;
93 
95  int TAUDECAY; // is tau decay counted as a secondary interaction
96 
97  int trigEffScanPhi; // central phi sector of trigger efficiency scan
98 
99 
105  int CENTER;
106  double MAXHORIZON;
107 
108  int EVENTSMAP;//whether draw the events distribution map
109 
110  int WHICHRAYS; // how many rays to look at (1) direct only (2) direct and down-going.
111  int MAKEVERTICAL; // option in the input file to force the signal to hit the payload with completely vertical polarisation. For making signal efficiency curves.
112 
113  // trigger
114  int LCPRCP; // 1 for circular polarization trigger, 0 for V and H
115  int JUSTVPOL; // 0 for both polarizations, 1 for just V polarization
116  // doesn't allow for both LCPRCP=1 and JUSTVPOL=1
117  //int FIFTHBAND; // 1 to include 0.2-1.2 GHz as a frequency band if JUSTVPOL==1
118  //int NFOLD=3; // how many channels must pass the trigger - in old mechanism - only used for anita-lite
119  int NFOLD; // how many channels must pass the trigger - in old mechanism - only used for anita-lite
120 
121 
122  //int CHMASKING=1; // whether or not to include channel masking
123  //int PHIMASKING=1; // whether or not to include phi masking
124  int CHMASKING; // whether or not to include channel masking
125  int PHIMASKING; // whether or not to include phi masking
126 
127  //int NLAYERS=0;
128  //int NANTENNAS=0;
129 
130  int NLAYERS;
132 
133  /* int ONLYFINAL=1; // only write to final histogram */
134  /* int HIST_MAX_ENTRIES=10000; //maximum number of events to put in histograms */
135  /* int HIST=1; //write to histograms */
136 
137  int ONLYFINAL; // only write to final histogram
138  int HIST_MAX_ENTRIES; //maximum number of events to put in histograms
139  int HIST; //write to histograms
140  double BW; // BANDWIDTH
141  //int DISCONES=1; // whether or not to use discones
142  int DISCONES; // whether or not to use discones
143 
144  //double NDISCONES_PASS=3; // number of discones needed to pass
145  double NDISCONES_PASS; // number of discones needed to pass
146 
147  int BORESIGHTS; // whether to loop over boresights
148  int SLAC; // whether or not we are simulating the slac run
149  double SLACSLOPE; // slope of the ice
150  double SLACICELENGTH; // length of the block of ice
151  double SLAC_HORIZDIST; // horizontal distance from interaction to center of payload at slac beam test
152  double SLAC_DEPTH; // vertical depth of interaction at slac beam test
153  double SLAC_HORIZ_DEPTH; // horizontal depth of interaction at slac
154 
155  std::string SOURCE; // the source option: FAVA (blazars), GRB (gamma ray bursts), SN (supernovae), see source.hh for more info
156  std::string WHICH_SOURCES; // which sources? All, or just a specific one
157  std::string WHICH_SUBTYPE; // which subtype? All, or just a specific one
158  std::string WHICH_START_TIME; // which start time? 0, or an anita flight option
159  std::string WHICH_END_TIME; // which end time? 0 or an anita flight option
160 
161  int SOURCE_USE_EXPONENT; //Use the exponent for a source (if exponent <= 21)
162  double SOURCE_MIN_E; // log10 of minimum energy for sources
163  double SOURCE_MAX_E; // log10 of maximinum energy for sources
164 
165  int SOURCE_SKIP_WHEN_NONE; //Whether or not to reroll position if no source is available!
166 
167  int ROUGHNESS; // include effects of surface roughness
168  int FIRN; // whether or not to include the firn
169 
170  //int SLOPEY=1; // 1=slopeyness on, 0=slopeyness off
171  //double SLOPEYSIZE=0.012; // This determines size of the slopeyness (0.10=5.4, 0.20=7.4 deg mean)
172 
173  int SLOPEY; // 1=slopeyness on, 0=slopeyness off
174  double SLOPEYSIZE; // This determines size of the slopeyness (0.10=5.4, 0.20=7.4 deg mean)
175 
176  bool DEBUG;
177 
178  //double THERMALNOISE_FACTOR=1.0; // factor to multiply thermal noise for error analysis
179  double THERMALNOISE_FACTOR; // factor to multiply thermal noise for error analysis
180 
181  //double FREQ_LOW_SEAVEYS=200.E6; // min frequency for seaveys
182  //const double FREQ_HIGH_SEAVEYS=1200.E6; // max frequency for seaveys
183 
184  double FREQ_LOW_SEAVEYS; // min frequency for seaveys
185  double FREQ_HIGH_SEAVEYS; // max frequency for seaveys
186  double BW_SEAVEYS;
187  //int FORSECKEL=1; // Make array of strength of signal across frequencies for different viewing angles.
188  int FORSECKEL; // Make array of strength of signal across frequencies for different viewing angles.
189 
190  double ROUGHSIZE; // roughness size
191  double SCREENEDGELENGTH; // edge length of screen used if there is roughness
192  double SCREENSTEPSIZE; // step size of screen grid if there is roughness
193 
194  int ICE_MODEL; //Select ice model to be used. 0 = Crust 2.0 , 1 = BEDMAP.
195  int NOFZ; // 1=depth dependent index of refraction,0=off
196  int CONSTANTCRUST; // set crust density and thickness to constant values.
197  int CONSTANTICETHICKNESS; // set ice thickness to constant value
198  int FIXEDELEVATION; // fix the elevation to the thickness of ice.
199  int MOOREBAY; //1=use Moore's Bay measured ice field attenuation length for the west land, otherwise use South Pole data
200  int USEPOSITIONWEIGHTS;// whether or not to restrict the neutrino position so it is within the horizon of the balloon
201  int WRITE_FILE; //Select whether or not to write a new input file for CreateHorizons
202 
203  int MINRAY;
204  int MAXRAY;
205 
208  double EXPONENT; //Select neutrino flux exponent value or flux model. Detail : READ_EXPONENT
209 
210 
211  // Bunch of variables which were global in icemc.cc but are settings:
212  int FILLRAYTREES; // fill tree for each ray in roughness simulation
213  int SEED; // random number seed.
214  double THETA_TH_FACTOR; // factor to multiply theta_th to check code is working properly
215  double CHANCEINHELL_FACTOR; // loosen chance in hell cuts to check code is working properly
216  int WEIGHTABSORPTION; // whether or not to weight for earth absorption
217  int CONSTANTY; // whether or not to set y to a constant=0.2
218  int taumodes; //whether to choose a flat distribution for y (tau made in rock) or not
219  int VARIABLE_ATTEN; // 0=depth dependent attenuation length, 1=fixed
220  int TRIGTYPE; //1=Trigger scheme as in the SMEX proposal or 0= Just at least 8 channels pass with 2.3 sigma signal
221  int ATMOSPHERE;// include atmosphere
222  int SCALEDOWNLCPRX1; // scale down lcp voltage of antenna 1 by sqrt(2)
223  int SCALEDOWNEPOLRX1; // scale down power of e pol. of antenna 1 by factor of 2
224  int SCALEDOWNHPOLRX1; // scale down power of h pol. of antenna 1 by factor of 2
225  int SCALEDOWNEPOLRX2; // scale down power of e pol. of antenna 2 by factor of user's choice
226  double SCALEFACTOREPOLRX2; // scale power of e pol. of antenna 2 by this factor
227  int SCALEDOWNHPOLRX2; // scale down power of h pol. of antenna 2 by factor of 2
228  int EPOLRX2ZERO; // lcp channel on anita-lite is not considered for triggering.
229  int HPOLRX2ZERO; // h pol. of 2nd antenna set to zero.
230  int RCPRX2ZERO; // rcp of 2nd antenna set to zero.
231  int LCPRX2ZERO; // lcp of 2nd antenna set to zero.
232  int FLATSURFACE; // Normals of all positions on the surface are straight up.
233  int WRITEPOSFILE; //Write neutrino position information to file
234  int SKIPCUTS; //See every neutrino through to the end - don't make any of the various cuts designed to speed up the program. (For checking distributions.)
235  int USEDIRECTIONWEIGHTS;// whether or not to restrict the neutrino angle so that the viewing angle is near the cerenkov cone
236  int SHOWERTYPE; // Type of shower for previous option
237  int antennaclump; //number of antenna in clump (L2)
238  // End of the once-global varibles.
240  int APPLYIMPULSERESPONSEDIGITIZER; // apply impulse response in the digitizer path
241  int APPLYIMPULSERESPONSETRIGGER; // apply impulse response in the trigger path
242  int USETIMEDEPENDENTTHRESHOLDS; // use time-dependent thresholds
243  int USEDEADTIME; // use dead time from flight
244  int NOISEFROMFLIGHTTRIGGER; // use thermal noise from flight in trigger path
245  int NOISEFROMFLIGHTDIGITIZER; // use thermal noise from flight in digitizer path
246  int MINBIAS; // generate minimum bias sample
247  int TRIGGEREFFSCAN; // do a trigger efficiency scan
248  int TRIGGEREFFSCAPULSE; // Apply pulse at AMPA (0) or at SURF (1)
249 
250  int TUFFSTATUS; // Are the TUFFs on for the whole flight?
251 
252  int ADDCW; // Add CW
253 
254  int PAYLOAD_USE_SPECIFIC_TIME; //Instead of using the entire flight path, only generate neutrinos for a specific time for the paylaod (0 to disable).
255  int PAYLOAD_USE_SPECIFIC_TIME_DELTA; //How much before and after the specific time can we use payload locations?
256  int SPECIFIC_NU_POSITION; //Use a specific interaction position
258  double SPECIFIC_NU_POSITION_DISTANCE; //Max distance from place
259  int IGNORE_CROSSPOL; //Ignore the crosspol polarization component
260  int POL_SIGN_HACK; // patch up the sign of e/h
261  double CUTONWEIGHTS;
263  double DEC_CUT;
265 
266  // custom sources
267  std::string CUSTOM_NAME;
268  double CUSTOM_RA; // in decimal degrees
269  double CUSTOM_DEC; // in decimal degrees
270  double CUSTOM_GAMMA;
271 
272  double HORIZON_OFFSET;
273  int useLPM;
274 
275  // In-header intialization is to old gcc as Domino's pizza is to real Italians
276  double jamieFactor;// = 0;
277  int medium;// = 0;
280 
281  // TString outputdir; // directory where outputs go
282 
283  ClassDef(Settings,2);
284 
285  private:
286  typedef std::map<TString, TString> kvpMap;
287 
288  kvpMap keyValuePairStrings; //< The raw key value pairs as string, from parsing the config file
289  Bool_t newKvpPassesSanityChecks(const TString& key, const TString& value, const char* fileName, int lineNum);
290  void complainAboutNotFindingKey(const TString& key);
291  void parseValueArray(const char* valueString, vector<int>& values);
292  void parseValueArray(const char* valueString, vector<float>& values);
293  void parseValueArray(const char* valueString, vector<double>& values);
294  void parseSettingsFile(const char* fileName, ofstream& outputFile);
295 
298  vector<double> efficiencyScanRingDelay;
301  vector<int> whichTUFFsON;
302  vector<double> tempThresholds;
303  vector<double> bandLowEdgesMHz;
304  vector<double> bandHighEdgesMHz;
305  vector<int> requiredBands;
306  vector<int> allowedBands;
307  vector<double> notchFilterLimitsMHz;
308  vector<int> channelRequirePol;
309  vector<int> channelAllowedPol;
310 
311 
312 };
313 #endif
int ONLYFINAL
Definition: Settings.h:137
int MAXRAY
Definition: Settings.h:204
int SCALEDOWNEPOLRX2
Definition: Settings.h:225
int PAYLOAD_USE_SPECIFIC_TIME_DELTA
Definition: Settings.h:255
double BW_SEAVEYS
Definition: Settings.h:186
int SCALEDOWNEPOLRX1
Definition: Settings.h:223
int LCPRX2ZERO
Definition: Settings.h:231
vector< double > efficiencyScanRingDelay
Definition: Settings.h:298
int PHIMASKING
Definition: Settings.h:125
int FILLRAYTREES
Definition: Settings.h:212
int MINBIAS
Definition: Settings.h:246
int EPOLRX2ZERO
Definition: Settings.h:228
double CUTONWEIGHTPROBS
Definition: Settings.h:262
double FREQ_LOW
lowest frequency
Definition: Settings.h:91
double UNBIASED_CHORD_STEP_M
Definition: Settings.h:64
double DEC_CUT
Definition: Settings.h:263
int NLAYERS
Definition: Settings.h:130
int FORSECKEL
Definition: Settings.h:188
double SIGMA_FACTOR
Definition: Settings.h:69
int ADDCW
Definition: Settings.h:252
void complainAboutNotFindingKey(const TString &key)
Definition: Settings.cc:1096
~Settings()
Definition: Settings.cc:53
double SPECIFIC_NU_POSITION_DISTANCE
Definition: Settings.h:258
int TRIGTYPE
Definition: Settings.h:220
int CONSTANTCRUST
Definition: Settings.h:196
int REQUIRE_CENTRE
Definition: Settings.h:87
int vertical_banana_points
Definition: Settings.h:207
void parseSettingsFile(const char *fileName, ofstream &outputFile)
Definition: Settings.cc:68
vector< int > efficiencyScanRingsUsed
Definition: Settings.h:299
vector< int > channelAllowedPol
Definition: Settings.h:309
int WRITE_FILE
Definition: Settings.h:201
void printAllKeyValuePairStrings()
Definition: Settings.cc:212
int HIST
Definition: Settings.h:139
double SLAC_HORIZ_DEPTH
Definition: Settings.h:153
int EVENTSMAP
Definition: Settings.h:108
std::string WHICH_END_TIME
Definition: Settings.h:159
int NFOLD
Definition: Settings.h:119
int SPECIFIC_NU_POSITION
Definition: Settings.h:256
double SLAC_DEPTH
Definition: Settings.h:152
double BW
Definition: Settings.h:140
double FREQ_HIGH_SEAVEYS
Definition: Settings.h:185
int SKIPCUTS
Definition: Settings.h:234
int RANDOMIZE_BN_ORIENTATION
Definition: Settings.h:104
vector< double > efficiencyScanOffAxisAttenuations
Definition: Settings.h:296
vector< double > bandHighEdgesMHz
Definition: Settings.h:304
int PULSER
Definition: Settings.h:89
double SCALEFACTOREPOLRX2
Definition: Settings.h:226
int WHICHPATH
Definition: Settings.h:100
int TRIGGEREFFSCAN
Definition: Settings.h:247
int CYLINDRICALSYMMETRY
Definition: Settings.h:67
double SLAC_HORIZDIST
Definition: Settings.h:151
double CUSTOM_DEC
Definition: Settings.h:269
void Initialize()
Definition: Settings.cc:226
double SCREENSTEPSIZE
Definition: Settings.h:192
int FLATSURFACE
Definition: Settings.h:232
int USEDEADTIME
Definition: Settings.h:243
std::string WHICH_START_TIME
Definition: Settings.h:158
int NBANDS
Definition: Settings.h:82
int APPLYIMPULSERESPONSETRIGGER
Definition: Settings.h:241
double RANDOMISEPOL
Definition: icemc.cc:163
int NNU
Definition: icemc.cc:161
double SPECIFIC_NU_POSITION_LONGITUDE
Definition: Settings.h:257
int POL_SIGN_HACK
Definition: Settings.h:260
double NDISCONES_PASS
Definition: Settings.h:145
int USETIMEDEPENDENTTHRESHOLDS
Definition: Settings.h:242
int SCALEDOWNLCPRX1
Definition: Settings.h:222
std::string WHICH_SUBTYPE
Definition: Settings.h:157
double INCLINE_TOPTHREE
Definition: Settings.h:77
int SHOWERTYPE
Definition: Settings.h:236
bool DEBUG
Definition: Settings.h:176
int VARIABLE_ATTEN
Definition: Settings.h:219
int TUFFSTATUS
Definition: Settings.h:250
int YPARAM
Definition: Settings.h:71
int ATMOSPHERE
Definition: Settings.h:221
int antennaclump
Definition: Settings.h:237
int APPLYIMPULSERESPONSEDIGITIZER
Definition: Settings.h:240
int BN_ALTITUDE
Definition: Settings.h:103
int SAVE_TRUTH_NU_TREE
Definition: Settings.h:279
double CHANCEINHELL_FACTOR
Definition: Settings.h:215
int FIXEDELEVATION
Definition: Settings.h:198
Bool_t newKvpPassesSanityChecks(const TString &key, const TString &value, const char *fileName, int lineNum)
Definition: Settings.cc:165
int MAKEVERTICAL
Definition: Settings.h:111
double CUTONWEIGHTS
Definition: Settings.h:261
std::map< TString, TString > kvpMap
Definition: Settings.h:286
int SIGMAPARAM
Definition: Settings.h:70
int ALL_SKY_MAP
Definition: Settings.h:264
void getSetting(const char *key, int &value, bool nonag=false)
Definition: Settings.cc:1102
int HPOLRX2ZERO
Definition: Settings.h:229
int SLAC
Definition: Settings.h:148
std::string SOURCE
Definition: Settings.h:155
int CHMASKING
Definition: Settings.h:124
double SPECIFIC_NU_POSITION_LATITUDE
Definition: Settings.h:257
int TRIGGEREFFSCAPULSE
Definition: Settings.h:248
double THETA_TH_FACTOR
Definition: Settings.h:214
int NANTENNAS
Definition: Settings.h:131
int WEIGHTABSORPTION
Definition: Settings.h:216
int JUSTVPOL
Definition: Settings.h:115
Settings()
Definition: Settings.cc:43
int SOURCE_SKIP_WHEN_NONE
Definition: Settings.h:165
int SCALEDOWNHPOLRX2
Definition: Settings.h:227
int TAUDECAY
Definition: Settings.h:95
int MOOREBAY
Definition: Settings.h:199
int SEED
Definition: Settings.h:213
int ANITAVERSION
Definition: Settings.h:66
int trigRequirements[4]
Definition: Settings.h:84
int UNBIASED_SELECTION
Definition: Settings.h:62
int TRIGGERSCHEME
Definition: Settings.h:73
double SCREENEDGELENGTH
Definition: Settings.h:191
double FREQ_LOW_SEAVEYS
Definition: Settings.h:184
Ray tracing.
Definition: ray.hh:20
Handles everything related to balloon positions, payload orientation over the course of a flight...
Definition: balloon.hh:30
Reads in and stores input settings for the run.
Definition: Settings.h:35
int WRITEPOSFILE
Definition: Settings.h:233
int SLOPEY
Definition: Settings.h:173
int BN_LONGITUDE
Definition: Settings.h:102
int NOISEFROMFLIGHTDIGITIZER
Definition: Settings.h:245
int NOFZ
Definition: Settings.h:195
double ROUGHSIZE
Definition: Settings.h:190
int useLPM
Definition: Settings.h:273
void ReadInputs(const char *fileName, ofstream &foutput, int &NNU, double &RANDOMISEPOL)
Definition: Settings.cc:317
int SIGNAL_FLUCT
Definition: Settings.h:72
vector< int > channelRequirePol
Definition: Settings.h:308
double SLACSLOPE
Definition: Settings.h:149
double SLOPEYSIZE
Definition: Settings.h:174
int PAYLOAD_USE_SPECIFIC_TIME
Definition: Settings.h:254
int NOISEFROMFLIGHTTRIGGER
Definition: Settings.h:244
std::string WHICH_SOURCES
Definition: Settings.h:156
int PERCENTBW
Definition: Settings.h:83
int SCALEDOWNHPOLRX1
Definition: Settings.h:224
double INCLINE_NADIR
Definition: Settings.h:78
int taumodes
Definition: Settings.h:218
double HORIZON_OFFSET
Definition: Settings.h:272
int FIRN
Definition: Settings.h:168
int CONSTANTICETHICKNESS
Definition: Settings.h:197
double CUSTOM_RA
Definition: Settings.h:268
double COHERENT_THRESHOLD
Definition: Settings.h:239
vector< double > tempThresholds
Definition: Settings.h:302
double CUSTOM_GAMMA
Definition: Settings.h:270
double UNBIASED_PS_MAX_DISTANCE_KM
Definition: Settings.h:63
int medium
Definition: Settings.h:277
vector< double > efficiencyScanPhiSectorDelay
Definition: Settings.h:297
int CONSTANTY
Definition: Settings.h:217
int SOURCE_USE_EXPONENT
Definition: Settings.h:161
double SOURCE_MIN_E
Definition: Settings.h:162
int CENTER
whether or not to center one phi sector of the payload on the incoming signal (for making signal effi...
Definition: Settings.h:105
double EXPONENT
Definition: Settings.h:208
int USEDARTBOARD
Definition: Settings.h:79
int ROUGHNESS
Definition: Settings.h:167
int BN_LATITUDE
Definition: Settings.h:101
vector< int > efficiencyScanApplyRingDelay
Definition: Settings.h:300
double jamieFactor
Definition: Settings.h:276
double SOURCE_MAX_E
Definition: Settings.h:163
kvpMap keyValuePairStrings
Definition: Settings.h:288
int BORESIGHTS
Definition: Settings.h:147
std::string CUSTOM_NAME
Definition: Settings.h:267
int LCPRCP
Definition: Settings.h:114
double SIGMA_THETA
Definition: Settings.h:90
Secondary interactions.
Definition: secondaries.hh:28
double SPECIFIC_NU_POSITION_ALTITUDE
Definition: Settings.h:257
void ApplyInputs(Anita *anita1, Secondaries *sec1, Signal *sig1, Balloon *bn1, Ray *ray1)
Definition: Settings.cc:892
double MAXHORIZON
Definition: Settings.h:106
int WHICHRAYS
Definition: Settings.h:110
int USEDIRECTIONWEIGHTS
Definition: Settings.h:235
int trigEffScanPhi
Definition: Settings.h:97
int ZEROSIGNAL
Definition: Settings.h:74
vector< double > bandLowEdgesMHz
Definition: Settings.h:303
double INCLUDE_NADIRONLY
Definition: Settings.h:88
int horizontal_banana_points
Definition: Settings.h:206
vector< int > allowedBands
Definition: Settings.h:306
double FREQ_HIGH
Definition: Settings.h:92
ClassDef(Settings, 2)
Contains everything about positions within payload and signals it sees for each event, in both the trigger and signal paths.
Definition: anita.hh:32
int ICE_MODEL
Definition: Settings.h:194
int HIST_MAX_ENTRIES
Definition: Settings.h:138
int USEPOSITIONWEIGHTS
Definition: Settings.h:200
vector< int > requiredBands
Definition: Settings.h:305
int MINRAY
Definition: Settings.h:203
int DISCONES
Definition: Settings.h:142
int SECONDARIES
Definition: Settings.h:94
double THERMALNOISE_FACTOR
Definition: Settings.h:179
int RCPRX2ZERO
Definition: Settings.h:230
int askaryanParameterization
Definition: Settings.h:278
double SLACICELENGTH
Definition: Settings.h:150
int GAINS
Definition: Settings.h:80
vector< double > notchFilterLimitsMHz
Definition: Settings.h:307
vector< int > whichTUFFsON
Definition: Settings.h:301
int WHICH
Definition: Settings.h:65
int BANDING
Definition: Settings.h:81
int IGNORE_CROSSPOL
Definition: Settings.h:259
int REMOVEPOLARIZATION
Definition: Settings.h:75
Radiation from interaction.
Definition: signal.hh:13
void parseValueArray(const char *valueString, vector< int > &values)