File indexing completed on 2025-01-30 10:30:44
0001
0002
0003 void gas_eval(const char *dfname, const char *cfname = 0)
0004 {
0005 auto *reco = new ReconstructionFactory(dfname, cfname, "pfRICH");
0006
0007
0008
0009 reco->AddBlackoutRadiator("QuartzWindow");
0010
0011
0012
0013
0014 reco->SetBlackoutBlowupValue(3);
0015
0016
0017 reco->SetSinglePhotonTimingResolution(0.050);
0018
0019 reco->SetExperimentalMode();
0020
0021 {
0022 CherenkovEvent *event;
0023
0024
0025 while((event = reco->GetNextEvent())) {
0026 printf("%3d\n", (int)reco->GetDigitizedHits().size());
0027
0028
0029 for(unsigned iq=0; iq<reco->GetDigitizedHits().size(); iq++) {
0030 auto &hit = reco->GetDigitizedHits()[iq];
0031
0032
0033 }
0034 }
0035 }
0036 }