test_Dune35tChannelGroupService.cxx
Go to the documentation of this file.
1 // test_Dune35tChannelGroupService.cxx
2 
3 // David Adams
4 // October 2016
5 //
6 // Test Dune35tChannelGroupService.
7 
8 #include "../Dune35tChannelGroupService.h"
9 #include <string>
10 #include <iostream>
11 #include <sstream>
12 #include <fstream>
13 #include <iomanip>
15 
16 using std::string;
17 using std::cout;
18 using std::endl;
19 using std::istringstream;
20 using std::ostringstream;
21 using std::ofstream;
22 using std::setw;
23 using std::vector;
24 using art::ServiceHandle;
25 
26 #undef NDEBUG
27 #include <cassert>
28 
30  const string myname = "test_Dune35tChannelGroupService: ";
31 #ifdef NDEBUG
32  cout << myname << "NDEBUG must be off." << endl;
33  abort();
34 #endif
35  const string line = "-----------------------------";
36 
37  cout << myname << line << endl;
38  cout << myname << "Create fcl file." << endl;
39  std::ostringstream oss;
40  oss << "services.ChannelMapService: {" << endl;
41  oss << " service_provider: \"ChannelMapService\"" << endl;
42  oss << " FileName: \"35tTPCChannelMap_v6.txt\"" << endl;
43  oss << " LogLevel: 1" << endl;
44  oss << "}" << endl;
45  oss << "services.ChannelGroupService: {" << endl;
46  oss << " service_provider: \"Dune35tChannelGroupService\"" << endl;
47  oss << " UseOffline: true" << endl;
48  oss << " Grouping: Regulator" << endl;
49  oss << " SplitByPlane: false" << endl;
50  oss << "}" << endl;
52 
53  cout << myname << line << endl;
54  cout << myname << "Fetch ChannelGroupService." << endl;
56  hcgs->print(cout, myname);
57 
58  cout << myname << line << endl;
59  unsigned int ngrp = hcgs->size();
60  cout << myname << "Check group count: " << ngrp << endl;
61  assert( ngrp == 32 );
62 
63  cout << myname << line << endl;
64  cout << myname << "Group names and channels:" << endl;
65  for ( unsigned int igrp=0; igrp<ngrp; ++igrp ) {
66  string name = hcgs->name(igrp);
67  const vector<ChannelGroupService::Index> chans = hcgs->channels(igrp);
68  cout << myname << " " << setw(10) << name << ": ["
69  << setw(6) << chans.front() << ", "
70  << setw(6) << chans.back() << "]" << endl;
71  assert( name.size() );
72  assert( name != "NoSuchGroup" );
73  assert( chans.size() );
74  }
75 
76  cout << myname << line << endl;
77  cout << myname << "Done." << endl;
78  return 0;
79 }
80 
81 int main(int argc, char* argv[]) {
83 }
84 
85 
86 //******************************************************************************
87 //*** Big configuration chunks
88 //***
89 
90 // this is a copy of the "standard" LArProperties configuration
92  service_provider: "LArPropertiesServiceStandard"
93 
94  # For following parameters, see http://pdg.lbl.gov/AtomicNuclearProperties/
95  RadiationLength: 19.55 # g/cm^2
96  AtomicNumber: 18 # Ar atomic number.
97  AtomicMass: 39.948 # Ar atomic mass (g/mol).
98  ExcitationEnergy: 188.0 # Ar mean excitation energy (eV).
99 
100 # realistic Argon 39 decays
101 # Argon39DecayRate: 0.00141 # decays per cm^3 per second. Assumes 1.01 Bq/kg and a density of 1.396 g/cc
102 # switch them off for faster simulation
103  Argon39DecayRate: 0.0
104 
105  # Optical properties
106  # Fast and slow scintillation emission spectra, from [J Chem Phys vol 91 (1989) 1469]
107  FastScintEnergies: [ 6.0, 6.7, 7.1, 7.4, 7.7, 7.9, 8.1, 8.4, 8.5, 8.6, 8.8, 9.0, 9.1, 9.4, 9.8, 10.4, 10.7]
108  SlowScintEnergies: [ 6.0, 6.7, 7.1, 7.4, 7.7, 7.9, 8.1, 8.4, 8.5, 8.6, 8.8, 9.0, 9.1, 9.4, 9.8, 10.4, 10.7]
109  FastScintSpectrum: [ 0.0, 0.04, 0.12, 0.27, 0.44, 0.62, 0.80, 0.91, 0.92, 0.85, 0.70, 0.50, 0.31, 0.13, 0.04, 0.01, 0.0]
110  SlowScintSpectrum: [ 0.0, 0.04, 0.12, 0.27, 0.44, 0.62, 0.80, 0.91, 0.92, 0.85, 0.70, 0.50, 0.31, 0.13, 0.04, 0.01, 0.0]
111  ScintResolutionScale: 1. # resolution factor used by G4 scintillation
112  ScintFastTimeConst: 6. # fast scintillation time constant (ns)
113  ScintSlowTimeConst: 1590. # slow scintillation time constant (ns)
114  ScintBirksConstant: 0.069 # birks constant for LAr (1/MeV cm)
115  ScintYield: 24000. # total scintillation yield (ph/Mev)
116  ScintPreScale: 0.03 # Scale factor to reduce number of photons simulated
117  # Later QE should be corrected for this scale
118  ScintYieldRatio: 0.3 # fast / slow scint ratio (needs revisitting)
119  ScintByParticleType: false # whether to use different yields and
120  # quenching per particle in fast op sim
121  EnableCerenkovLight: true # whether to switch on cerenkov light (slow)
122 
123 
124 
125 
126  # Scintillation yields and fast/slow ratios per particle type
127  MuonScintYield: 24000
128  MuonScintYieldRatio: 0.23
129  PionScintYield: 24000
130  PionScintYieldRatio: 0.23
131  ElectronScintYield: 20000
132  ElectronScintYieldRatio: 0.27
133  KaonScintYield: 24000
134  KaonScintYieldRatio: 0.23
135  ProtonScintYield: 19200
136  ProtonScintYieldRatio: 0.29
137  AlphaScintYield: 16800
138  AlphaScintYieldRatio: 0.56
139 
140 
141  # Refractive index as a function of energy (eV) from arXiv:1502.04213v1
142  RIndexEnergies: [ 1.900, 2.934, 3.592, 5.566, 6.694, 7.540, 8.574, 9.044, 9.232, 9.420, 9.514, 9.608, 9.702, 9.796, 9.890, 9.984, 10.08, 10.27, 10.45, 10.74, 10.92 ]
143  RIndexSpectrum: [ 1.232, 1.236, 1.240, 1.261, 1.282, 1.306, 1.353, 1.387, 1.404, 1.423, 1.434, 1.446, 1.459, 1.473, 1.488, 1.505, 1.524, 1.569, 1.627, 1.751, 1.879 ]
144 
145  # absorption length as function of energy
146  AbsLengthEnergies: [ 4, 5, 6, 7, 8, 9, 10, 11 ]
147  AbsLengthSpectrum: [ 2000., 2000., 2000., 2000., 2000., 2000., 2000., 2000.]
148 
149  # Rayleigh scattering length (cm) @ 90K as a function of energy (eV) from arXiv:1502.04213
150  RayleighEnergies: [ 2.80, 3.00, 3.50, 4.00, 5.00, 6.00, 7.00, 8.00, 8.50, 9.00, 9.20, 9.40, 9.50, 9.60, 9.70, 9.80, 9.90, 10.0, 10.2, 10.4, 10.6, 10.8 ]
151  RayleighSpectrum: [ 47923., 35981., 18825., 10653., 3972., 1681., 750.9, 334.7, 216.8, 135.0, 109.7, 88.06, 78.32, 69.34, 61.06, 53.46, 46.50, 40.13, 28.91, 19.81, 12.61, 7.20 ]
152 
153  # Surface reflectivity data - vector of energy spectrum per
154  # surface type
155  ReflectiveSurfaceEnergies: [ 7, 9, 10 ]
156  ReflectiveSurfaceNames: [ "STEEL_STAINLESS_Fe7Cr2Ni" ]
157  ReflectiveSurfaceReflectances: [ [ 0.25, 0.25, 0.25 ] ]
158  ReflectiveSurfaceDiffuseFractions: [ [ 0.5, 0.5, 0.5 ] ]
159 )cfg"};
160 
161 
162 // this is a copy of the "standard" DetectorProperties configuration
164 service_provider: "DetectorPropertiesServiceStandard"
165 
166 # Drift properties
167 SternheimerA: 0.1956 # Ar Sternheimer parameter a.
168 SternheimerK: 3.0000 # Ar Sternheimer parameter k.
169 SternheimerX0: 0.2000 # Ar Sternheimer parameter x0.
170 SternheimerX1: 3.0000 # Ar Sternheimer parameter x0.
171 SternheimerCbar: 5.2146 # Ar Sternheimer parameter Cbar.
172 
173 Temperature: 87
174 Electronlifetime: 3.0e3
175 Efield: [0.5,0.666,0.8] #(predicted for microBooNE)
176 ElectronsToADC: 6.8906513e-3 # 1fC = 43.008 ADC counts for DUNE fd
177 NumberTimeSamples: 4492 # drift length/drift velocity*sampling rate = (359.4 cm)/(0.16 cm/us)*(2 MHz)
178 ReadOutWindowSize: 4492 # drift length/drift velocity*sampling rate = (359.4 cm)/(0.16 cm/us)*(2 MHz)
179 TimeOffsetU: 0.
180 TimeOffsetV: 0.
181 TimeOffsetZ: 0.
182 DriftVelFudgeFactor: 1.
183 
184 SimpleBoundaryProcess: true #enable opticalBoundaryProcessSimple instead of G4 default
185 
186 )cfg"};
static QCString name
Definition: declinfo.cpp:673
def line(rflist, normalization=13700 *units.eplus)
Definition: __init__.py:701
virtual Index size() const =0
std::string string
Definition: nybbler.cc:12
struct vector vector
static void load_services(std::string const &config)
const std::string DetectorPropertiesServiceConfigurationString
virtual std::ostream & print(std::ostream &out=std::cout, std::string prefix="") const =0
virtual const ChannelVector & channels(Index igrp) const =0
Q_EXPORT QTSManip setw(int w)
Definition: qtextstream.h:331
const std::string LArPropertiesServiceConfigurationString
virtual Name name(Index igrp) const =0
int test_Dune35tChannelGroupService()
QTextStream & endl(QTextStream &s)
int main(int argc, char *argv[])